Exposes a variable to Unreal's reflection system
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category="Custom Category")
bool MyProperty = false;
// Allows property to be viewed/edited inside the details panel
EditAnywhere | EditInstanceOnly | EditDefaultsOnly
VisibleAnywhere | VisibleInstanceOnly | VisibleDefaultsOnly
// Allows property to be used inside Blueprint's Event Graph
BlueprintReadWrite | BlueprintReadOnly
EditAnywhere
EditInstanceOnly
EditDefaultsOnly
VisibleAnywhere
VisibleInstanceOnly
VisibleDefaultsOnly
BlueprintReadWrite
BlueprintReadOnly
Instanced // Allows property (if of type UObject derived) to be editable in-editor, More info below
Category = "My Category | My Sub Category" // Allows property to be placed in the given category
// Use Syntax UPROPERTY(meta=(...))
DisplayName = "My Property" // Allows property name to be different inside editor
AllowPrivateAccess = "true" // Allows property to be placed inside `private` Access Specifier of the class
Example of Instanced
specifier here