Skip to main content

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.
Inputs
BaseClass
UClass*
required
The base class to get the derived classes for.
bRecursive
boolean
Whether to include derived classes of derived classes.
Outputs
DerivedClasses
TArray<UClass*>
The list of derived classes.

Project

GetProjectVersion

Gets the project version as a string.
Outputs
ProjectVersion
FString
The project version as a string.

Clipboard

CopyTextToClipboard

Copies the provided text to the clipboard.
Inputs
Text
FText
required
The text to copy to the clipboard.

CopyStringToClipboard

Copies the provided string to the clipboard.
Inputs
String
FString
required
The string to copy to the clipboard.

GetTextFromClipboard

Gets the content from the clipboard as FText.
Outputs
Text
FText
The text from the clipboard.

GetStringFromClipboard

Gets the content from the clipboard as an FString.
Outputs
String
FString
The content from the clipboard as a string.

ClearClipboard

Clears the clipboard.