General
GetChildClasses
Returns a list of actor classes that are derived from the given base class. This exposes the built-in GetDerivedClasses function to blueprints.- Blueprint
- C++

UClass*
required
The base class to get the derived classes for.
boolean
Whether to include derived classes of derived classes.
TArray<UClass*>
The list of derived classes.
Project
GetProjectVersion
Gets the project version as a string.- Blueprint
- C++

FString
The project version as a string.
Clipboard
CopyTextToClipboard
Copies the provided text to the clipboard.- Blueprint
- C++

FText
required
The text to copy to the clipboard.
CopyStringToClipboard
Copies the provided string to the clipboard.- Blueprint
- C++

FString
required
The string to copy to the clipboard.
GetTextFromClipboard
Gets the content from the clipboard as FText.- Blueprint
- C++

FText
The text from the clipboard.
GetStringFromClipboard
Gets the content from the clipboard as an FString.- Blueprint
- C++

FString
The content from the clipboard as a string.
ClearClipboard
Clears the clipboard.- Blueprint
- C++


