ApplyHavokImpulse - ObjectReference
Member of: ObjectReference Script
Applies a Havok impulse force to this object of the specified direction and magnitude.
SyntaxEdit
Function ApplyHavokImpulse(float afX, float afY, float afZ, float afMagnitude) native
ParametersEdit
- afX: X component of the force vector.
- afY: Y component of the force vector.
- afZ: Z component of the force vector.
- afMagnitude: The magnitude of the force vector - how hard to hit this object.
Return ValueEdit
None.
ExamplesEdit
; Apply a physical force along the x axis with a magnitude of 5 to a cheese wheel
CheeseWheel.ApplyHavokImpulse(1.0, 0.0, 0.0, 5.0)
NotesEdit
- For this to work for actors, you must call PushActorAway - Actor first, using a bit of force, then call this function.