Choose your operating system:
Windows
macOS
Linux
Module |
|
Header |
/Engine/Source/Runtime/Engine/Classes/Kismet/BlueprintAsyncActionBase.h |
Include |
#include "Kismet/BlueprintAsyncActionBase.h" |
class UBlueprintAsyncActionBase : public UObject
BlueprintCallable factory functions for classes which inherit from UBlueprintAsyncActionBase will have a special blueprint node created for it: UK2Node_AsyncAction You can stop this node spawning and create a more specific one by adding the UCLASS metadata "HasDedicatedAsyncNode"
Name | Description | ||
---|---|---|---|
|
TWeakObjectPtr<... |
RegisteredWithGameInstance |
Name | Description | |
---|---|---|
|
UBlueprintAsyncActionBase ( |
Default UObject constructor |
Name | Description | ||
---|---|---|---|
|
Activate() |
Called to trigger the action once the delegates have been bound |
|
|
RegisterWithGameInstance ( |
Call to globally register this object with a game instance, it will not be destroyed until SetReadyToDestroy is called This allows having an action stay alive until SetReadyToDestroy is manually called, allowing it to be used inside loops or if the calling BP goes away |
|
|
RegisterWithGameInstance ( |
||
|
SetReadyToDestroy() |
Call when the action is completely done, this makes the action free to delete, and will unregister it with the game instance |