Navigation
API > API/Plugins > API/Plugins/RemoteControl > API/Plugins/RemoteControl/URemoteControlFunctionLibrary
References
| Module | RemoteControl |
| Header | /Engine/Plugins/VirtualProduction/RemoteControl/Source/RemoteControl/Public/RemoteControlFunctionLibrary.h |
| Include | #include "RemoteControlFunctionLibrary.h" |
| Source | /Engine/Plugins/VirtualProduction/RemoteControl/Source/RemoteControl/Private/RemoteControlFunctionLibrary.cpp |
UFUNCTION&40;BlueprintCallable, Category&61;"Remote Control Color"&41;
static bool ApplyColorWheelDelta
&40;
UObject &42; TargetObject,
const FString & PropertyName,
const FColorWheelColor & DeltaValue,
const FColorWheelColor & ReferenceColor,
bool bIsInteractive
&41;
Remarks
Add/subtract from the value of an FLinearColor property using a delta value based on color wheel coordinates. Whether the operation was successful.
Parameters
| Name | Description |
|---|---|
| TargetObject | the object that contains the property to modify. |
| PropertyName | the name of the property to modify. |
| DeltaValue | the amount to change the color by. |
| ReferenceColor | if the color's current position on the wheel is ambiguous as calculated from RGB values (e.g. black), use this reference color's position instead. |
| bIsInteractive | if true, this is treated as an interactive change. If false, it will be treated as the final value set change. |