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 |
static bool ApplyColorGradingWheelDelta
(
UObject * TargetObject,
const FString & PropertyName,
const FColorGradingWheelColor & DeltaValue,
const FColorGradingWheelColor & ReferenceColor,
bool bIsInteractive,
float MinValue,
float MaxValue
)
Remarks
Add/subtract from the value of an FVector4 property interpreted as RGBV 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. |