SplineTranslateToRef - ObjectReference
Revision as of 23:54, 6 July 2016 by imported>Docclox (Created a missing page for the SplineTranslateToRef function)
Member of: ObjectReference Script
Makes the object translate to the passed reference (matching position and rotation) at the given speed using a spline.
Syntax
Function SplineTranslateToRef(ObjectReference arTarget, float afTangentMagnitude, float afSpeed, float afMaxRotationSpeed = 0.0)
SplineTranslateTo(arTarget.X, arTarget.Y, arTarget.Z, arTarget.GetAngleX(), arTarget.GetAngleY(), arTarget.GetAngleZ(), afTangentMagnitude, afSpeed, afMaxRotationSpeed)
Parameters
- arTarget: The target to match position and rotation to
- afTangentMagnitude: Magnitude of the spline tangents
- afSpeed: Movement Speed.
- afMaxRotationSpeed: The maximum rotation speed (Default is 0 to mean "don't clamp rotation speed")
- Default: 0
Return Value
None.
Examples
; Translate the bird ref to the rock with a low spline magnitude and speed
Bird.SplineTranslateToRef(Rock, 1.0, 1.0)
; Translate the bird ref to the rock with a low spline magnitude and speed, and low rotation speed
Bird.SplineTranslateToRef(Rock, 1.0, 1.0, 10)