Arma Reforger Explorer  1.1.0.42
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
VehicleHelicopterSimulation.c
Go to the documentation of this file.
1 /*
2 ===========================================
3 Do not modify, this script is generated
4 ===========================================
5 */
6 
13 {
14 }
15 
16 class VehicleHelicopterSimulation: VehicleBaseSimulation
17 {
20  proto external void SetThrottle(float in);
22  proto external void EngineStart();
24  proto external void EngineStop();
26  proto external bool EngineIsOn();
28  proto external int RotorCount();
30  proto external void RotorSetForceScaleState(int rotorIdx, float forceScale);
32  proto external void RotorSetTorqueScaleState(int rotorIdx, float torqueScale);
34  proto external void RotorGetTransform(int rotorIdx, out vector transform[4]);
36  proto external void RotorGetAxis(int rotorIdx, out vector axis);
38  proto external float RotorGetRadius(int rotorIdx);
40  proto external SpinDirection RotorGetSpinDirection(int rotorIdx);
42  proto external float RotorGetRPMTarget(int rotorIdx);
44  proto external float RotorGetRPM(int rotorIdx);
46  proto external RotorState RotorGetState(int rotorIdx);
48  proto external LandingGearType LandingGearGetType();
50  proto external float GetAltitudeAGL();
51 }
52 
LandingGearType
LandingGearType
Definition: LandingGearType.c:12
EngineStop
proto external void EngineStop()
Stops the engine.
RotorGetState
proto external RotorState RotorGetState(int rotorIdx)
Returns rotor state (static, spinning or destroyed)
RotorGetRPMTarget
proto external float RotorGetRPMTarget(int rotorIdx)
Returns rotor target RPM.
RotorGetRadius
proto external float RotorGetRadius(int rotorIdx)
Returns rotor radius.
RotorGetRPM
proto external float RotorGetRPM(int rotorIdx)
Returns rotor actual RPM.
LandingGearGetType
proto external LandingGearType LandingGearGetType()
Returns type of landing gear available.
RotorGetSpinDirection
proto external SpinDirection RotorGetSpinDirection(int rotorIdx)
Returns rotor spin direction.
RotorGetAxis
proto external void RotorGetAxis(int rotorIdx, out vector axis)
Returns rotor axis in local space.
RotorSetForceScaleState
proto external void RotorSetForceScaleState(int rotorIdx, float forceScale)
Sets scaling factor of rotor force.
RotorGetTransform
proto external void RotorGetTransform(int rotorIdx, out vector transform[4])
Returns rotor transform in local space.
VehicleHelicopterSimulationClass
Definition: VehicleHelicopterSimulation.c:12
EngineIsOn
proto external bool EngineIsOn()
Returns true if engine is running.
GetAltitudeAGL
proto external float GetAltitudeAGL()
Returns altitude above ground level (represents terrain detection)
SetThrottle
VehicleHelicopterSimulationClass VehicleBaseSimulationClass SetThrottle(float in)
VehicleBaseSimulationClass
Definition: VehicleBaseSimulation.c:12
EngineStart
proto external void EngineStart()
Starts the engine.
RotorState
RotorState
Definition: RotorState.c:12
SpinDirection
SpinDirection
Definition: SpinDirection.c:12
RotorSetTorqueScaleState
proto external void RotorSetTorqueScaleState(int rotorIdx, float torqueScale)
Sets scaling factor of rotor torque.
RotorCount
proto external int RotorCount()
Returns number of rotors.