aircraft_unload Event

The unloadaircraft event fires when an aircraft has been unloaded.

Event type

The dispatched event uses the AircraftLoadEvent interface.

Example

> simulator.addEventListener("unloadaircraft", (event) => { console.log(`Aircraft {event.index} unloaded.`)})
undefined
Aircraft 0 unloaded
Aircraft 1 unloaded
Aircraft 2 unloaded

References