ue5_set_property
Sets a UProperty value on any UObject in Unreal Engine 5 with undo support. Use setter functions for component properties that are unavailable remotely.
Instructions
Sets the value of a UPROPERTY on a UObject. Supports undo (Ctrl+Z). NOTE: Component properties (e.g., RootComponent, LightComponent) are often unavailable remotely. Use ue5_call_function with setter functions like SetActorScale3D instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| objectPath | Yes | The path to the UObject. | |
| propertyName | Yes | The name of the property to set. | |
| value | Yes | The value to set the property to (can be string, number, boolean, object, or array). |