Example #1
0
 public void SetReadyToDestroy()
 {
     Native_UBlueprintAsyncActionBase.SetReadyToDestroy(Address);
 }
Example #2
0
 public void RegisterWithGameInstance(UObject worldContextObject)
 {
     Native_UBlueprintAsyncActionBase.RegisterWithGameInstanceWorldContext(Address,
                                                                           worldContextObject == null ? IntPtr.Zero : worldContextObject.Address);
 }
Example #3
0
 public void RegisterWithGameInstance(UGameInstance gameInstance)
 {
     Native_UBlueprintAsyncActionBase.RegisterWithGameInstance(Address,
                                                               gameInstance == null ? IntPtr.Zero : gameInstance.Address);
 }
Example #4
0
 public void Activate()
 {
     Native_UBlueprintAsyncActionBase.Activate(Address);
 }