Arma Reforger Explorer  1.1.0.42
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
VehicleControllerComponent.c
Go to the documentation of this file.
1 /*
2 ===========================================
3 Do not modify, this script is generated
4 ===========================================
5 */
6 
12 class VehicleControllerComponentClass: CompartmentControllerComponentClass
13 {
14 }
15 
16 class VehicleControllerComponent: CompartmentControllerComponent
17 {
18  proto external bool CanSwitchSeat();
20  static proto EVehicleDrivingAssistanceMode GetDrivingAssistanceMode();
22  static proto void SetDrivingAssistanceMode(EVehicleDrivingAssistanceMode mode);
24  proto external VehicleBaseSimulation GetBaseSimulation();
26  proto external FuelManagerComponent GetFuelManager();
28  proto external BaseLightManagerComponent GetLightManager();
32  proto external SignalsManagerComponent GetSignalsManager();
34  proto external BaseWeaponManagerComponent GetWeaponManager();
36  proto external void TryStartEngine();
41  proto external bool StartEngine();
46  proto external void StopEngine(bool playDriverAnimation = true);
47  proto external bool IsEngineOn();
49  proto external float GetEngineStartupChance();
54  proto external void SetEngineStartupChance(float chance);
56  proto external bool GetEngineDrowned();
61  proto external void SetEngineDrowned(bool drowned);
62 }
63 
GetWeaponManager
proto external BaseWeaponManagerComponent GetWeaponManager()
Returns component which handles weapons.
GetLightManager
proto external BaseLightManagerComponent GetLightManager()
Returns the light manager associated with this controller.
VehicleControllerComponentClass
Definition: VehicleControllerComponent.c:12
GetSignalsManager
proto external SignalsManagerComponent GetSignalsManager()
Returns the signals manager associated with this controller.
PilotCompartmentSlot
Definition: PilotCompartmentSlot.c:12
IsEngineOn
proto external bool IsEngineOn()
GetFuelManager
proto external FuelManagerComponent GetFuelManager()
Returns the fuel manager associated with this controller.
GetEngineStartupChance
proto external float GetEngineStartupChance()
Returns the engine startup chance in <0, 100>.
TryStartEngine
proto external void TryStartEngine()
Try to start the engine with the chance of getting the engine not started based on engine startup cha...
CanSwitchSeat
proto external bool CanSwitchSeat()
EVehicleDrivingAssistanceMode
EVehicleDrivingAssistanceMode
Player vehicle driving assistance modes. Individual features may become separate options in future.
Definition: EVehicleDrivingAssistanceMode.c:13
GetBaseSimulation
proto external VehicleBaseSimulation GetBaseSimulation()
Returns the base of simulation component associated with this controller.
StopEngine
proto external void StopEngine(bool playDriverAnimation=true)
StartEngine
proto external bool StartEngine()
SetEngineStartupChance
proto external void SetEngineStartupChance(float chance)
GetPilotCompartmentSlot
proto external PilotCompartmentSlot GetPilotCompartmentSlot()
Returns the pilot compartment slot associated with this controller.
SetEngineDrowned
proto external void SetEngineDrowned(bool drowned)
GetEngineDrowned
proto external bool GetEngineDrowned()
Returns true if the engine is drowned.