Planes
Planes drive on land to build up speed and then take to the air. They bank into turns and respect a height limit.
| Property | Value |
|---|---|
| Movement | LAND + AIR |
| Friction | HIGH_FRICTION |
| Tilts/banks | Yes |
| Folder | vehicles/planes/ |
Notes
- Because planes are both
LANDandAIR, they roll along the ground for take-off and landing, then fly. - Use a
heightLimitto cap how high they fly, e.g.{ minHeight: 0, maxHeight: 60 }. - Planes use the standard
skinandseatparts — no special parts required.
typeStrategies: [ { movementType: land }, { movementType: air } ]
heightLimit: { minHeight: 0, maxHeight: 60 }
gearbox: { realistic: false }
See Creating vehicles for the full settings list and the Helicopters page for general air-vehicle behavior.