unreal.RCWebInterfaceBlueprintLibrary

class unreal.RCWebInterfaceBlueprintLibrary(outer: Object | None = None, name: Name | str = 'None')

Bases: BlueprintFunctionLibrary

RCWeb Interface Blueprint Library

C++ Source:

  • Plugin: RemoteControlWebInterface

  • Module: RemoteControlWebInterface

  • File: RCWebInterfaceLibrary.h

classmethod find_all_actors_of_class(class_) Map[Actor, str]

Shortcut function to find all actors of a class

Parameters:

class (type(Class)) –

Return type:

Map[Actor, str]

classmethod find_matching_actors_to_rebind(preset_id, property_ids) Map[str, Actor]

Get a list of compatible actors to rebind the remote control preset properties returned value is a map, key is the actor label

Parameters:
Return type:

Map[str, Actor]

classmethod get_owner_actor_label(preset_id, property_ids) str

Get the label of the owner actor of the remote control preset properties If the properties has different owners, an empty string will be returned

Parameters:
Return type:

str

classmethod get_values_of_actors_by_class(class_) Map[Actor, str]

Gets all properties values (as a json) of all actors of type Class

Parameters:

class (type(Class)) –

Return type:

Map[Actor, str]

classmethod rebind_properties(preset_id, property_ids, new_owner) None

Rebind the remote control preset properties to a new owner

Parameters:
classmethod spawn_actor(class_) Actor

Shortcut function to spawn an actor of a class

Parameters:

class (type(Class)) –

Return type:

Actor