Example #1
0
 public float ElapsedTime()
 {
     return(Native_FLatentResponse.ElapsedTime(Address));
 }
Example #2
0
 public FLatentResponse TriggerLink(FName executionFunction, int linkID, FWeakObjectPtr callbackTarget)
 {
     Native_FLatentResponse.TriggerLink(Address, ref executionFunction, linkID, ref callbackTarget);
     return(this);
 }
Example #3
0
 public FLatentResponse FinishAndTriggerIf(bool condition, FName executionFunction, int linkID, FWeakObjectPtr callbackTarget)
 {
     Native_FLatentResponse.FinishAndTriggerIf(Address, condition, ref executionFunction, linkID, ref callbackTarget);
     return(this);
 }
Example #4
0
 public FLatentResponse DoneIf(bool condition)
 {
     Native_FLatentResponse.DoneIf(Address, condition);
     return(this);
 }