Navigation
API > API/Plugins > API/Plugins/RemoteControl > API/Plugins/RemoteControl/IRemoteControlModule
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool SetPresetController
(
const FName PresetName, |
Set a controller's value on a Remote Control Preset | IRemoteControlModule.h | |
bool SetPresetController
(
const FName PresetName, |
Set a controller's value on a Remote Control Preset | IRemoteControlModule.h |
SetPresetController(const FName, const FName, IStructDeserializerBackend &, const TArray< uint8 > &, const bool)
Description
Set a controller's value on a Remote Control Preset
| Name | SetPresetController |
| Type | function |
| Header File | /Engine/Plugins/VirtualProduction/RemoteControl/Source/RemoteControl/Public/IRemoteControlModule.h |
| Include Path | #include "IRemoteControlModule.h" |
bool SetPresetController
(
const FName PresetName,
const FName ControllerName,
IStructDeserializerBackend & Backend,
const TArray < uint8 > & InPayload,
const bool bAllowIntercept
)
true if the operation succeeded
Parameters
| Name | Remarks |
|---|---|
| PresetName | The Remote Control Preset asset's name |
| ControllerName | The name of the controller being manipulated |
| Backend | the struct deserializer backend to use to deserialize the object properties. |
| InPayload | the JSON payoad |
| bAllowIntercept | Whether the call needs to be replicated to interceptors or invoked directly |
SetPresetController(const FName, class URCVirtualPropertyBase *, IStructDeserializerBackend &, const TArray< uint8 > &, const bool)
Description
Set a controller's value on a Remote Control Preset
| Name | SetPresetController |
| Type | function |
| Header File | /Engine/Plugins/VirtualProduction/RemoteControl/Source/RemoteControl/Public/IRemoteControlModule.h |
| Include Path | #include "IRemoteControlModule.h" |
bool SetPresetController
(
const FName PresetName,
class URCVirtualPropertyBase * Controller,
IStructDeserializerBackend & Backend,
const TArray < uint8 > & InPayload,
const bool bAllowIntercept
)
true if the operation succeeded
Parameters
| Name | Remarks |
|---|---|
| PresetName | The Remote Control Preset asset's name |
| Controller | The controller object being manipulated |
| Backend | the struct deserializer backend to use to deserialize the object properties. |
| InPayload | the JSON payoad |
| bAllowIntercept | Whether the call needs to be replicated to interceptors or invoked directly |