unreal.LiveLinkTransformControllerData

class unreal.LiveLinkTransformControllerData(world_transform: bool = False, sweep: bool = False, teleport: bool = False)

Bases: StructBase

Live Link Transform Controller Data

C++ Source:

  • Plugin: LiveLink

  • Module: LiveLinkComponents

  • File: LiveLinkTransformController.h

Editor Properties: (see get_editor_property/set_editor_property)

  • sweep (bool): [Read-Write] Whether we sweep to the destination location, triggering overlaps along the way and stopping short of the target if blocked by something. Only the root component is swept and checked for blocking collision, child components move without sweeping. If collision is off, this has no effect.

  • teleport (bool): [Read-Write] Whether we teleport the physics state (if physics collision is enabled for this object). If true, physics velocity for this object is unchanged (so ragdoll parts are not affected by change in location). If false, physics velocity is updated based on the change in position (affecting ragdoll parts). If CCD is on and not teleporting, this will affect objects along the entire sweep volume.

  • use_location (bool): [Read-Write] Whether we should set the owning actor’s location with the value coming from live link.

  • use_rotation (bool): [Read-Write] Whether we should set the owning actor’s rotation with the value coming from live link.

  • use_scale (bool): [Read-Write] Whether we should set the owning actor’s scale with the value coming from live link.

  • world_transform (bool): [Read-Write] Set the transform of the component in world space of in its local reference frame.

property sweep: bool

[Read-Only] Whether we sweep to the destination location, triggering overlaps along the way and stopping short of the target if blocked by something. Only the root component is swept and checked for blocking collision, child components move without sweeping. If collision is off, this has no effect.

Type:

(bool)

property teleport: bool

[Read-Only] Whether we teleport the physics state (if physics collision is enabled for this object). If true, physics velocity for this object is unchanged (so ragdoll parts are not affected by change in location). If false, physics velocity is updated based on the change in position (affecting ragdoll parts). If CCD is on and not teleporting, this will affect objects along the entire sweep volume.

Type:

(bool)

property world_transform: bool

[Read-Only] Set the transform of the component in world space of in its local reference frame.

Type:

(bool)