unreal.InterpCurvePointQuat

class unreal.InterpCurvePointQuat(val: float = 0.0, out_val: Quat = Ellipsis, arrive_tangent: Quat = Ellipsis, leave_tangent: Quat = Ellipsis, interp_mode: InterpCurveMode = Ellipsis)

Bases: StructBase

Describes one specific point on an interpolation curve. note: This is a mirror of TInterpCurvePoint<FQuat>, defined in InterpCurvePoint.h

C++ Source:

  • Module: CoreUObject

  • File: NoExportTypes.h

Editor Properties: (see get_editor_property/set_editor_property)

  • arrive_tangent (Quat): [Read-Write] Tangent of curve arriving at this point.

  • interp_mode (InterpCurveMode): [Read-Write] Interpolation mode between this point and the next one.

  • leave_tangent (Quat): [Read-Write] Tangent of curve leaving this point.

  • out_val (Quat): [Read-Write] Quaternion output value of when input is equal to InVal.

  • val (float): [Read-Write] Float input value that corresponds to this key (eg. time).

property arrive_tangent: Quat

[Read-Write] Tangent of curve arriving at this point.

Type:

(Quat)

property interp_mode: InterpCurveMode

[Read-Write] Interpolation mode between this point and the next one.

Type:

(InterpCurveMode)

property leave_tangent: Quat

[Read-Write] Tangent of curve leaving this point.

Type:

(Quat)

property out_val: Quat

[Read-Write] Quaternion output value of when input is equal to InVal.

Type:

(Quat)

property val: float

[Read-Write] Float input value that corresponds to this key (eg. time).

Type:

(float)