Closed
Description
In script ActionGeneric.cs method OnExit
call initLogic
and OnInit
call exitLogic
.
protected override void OnExit () {
initLogic?.Invoke();
}
protected override void OnInit () {
exitLogic?.Invoke();
}
In script ActionGeneric.cs method OnExit
call initLogic
and OnInit
call exitLogic
.
protected override void OnExit () {
initLogic?.Invoke();
}
protected override void OnInit () {
exitLogic?.Invoke();
}