DayZ 1.29
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено
Helicopter.c
См. документацию.
1
8
9class Helicopter extends Transport
10{
11};
12
15{
17 proto native bool IsEngineOn();
18
20 proto native void EngineStart();
21
23 proto native void EngineStop();
24
26 proto native bool IsAutohoverOn();
27
29 proto native void AutohoverOn();
30
32 proto native void AutohoverOff();
33};
proto native void AutohoverOn()
Enables auto-hover system.
proto native void EngineStart()
Starts the engine.
proto native void EngineStop()
Stops the engine.
proto native bool IsAutohoverOn()
Returns true when auto-hover system is turned on, false otherwise.
proto native void AutohoverOff()
Disables auto-hover system.
proto native bool IsEngineOn()
Returns true when engine is running, false otherwise.
Определения HelicopterScript.c:5
Native implementatin with auto hover funcionality.
Определения Helicopter.c:15
Определения Helicopter.c:5
Native class for boats - handles physics simulation.
Определения Boat.c:32
Определения Transport.c:5