- Found in:
- Vanilla
eventOnShipGravJump(LocationaDestination, intaState)
Description
Documentation Comment
Event received when a ship grav jump event occurs - State { Initiated = 0, AnimStarted = 1, Completed = 2, Failed = 3 }
Parameters
LocationaDestination
intaState
Examples
Auto-Generated Example
Scriptname MyCoolScript extends ReferenceAlias
event OnShipGravJump(Location aDestination, int aState)
Debug.trace("Event received - OnShipGravJump: aDestination = " + aDestination + " aState = " + aState)
endEvent