Arma Reforger Explorer  1.1.0.42
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
VehicleBaseSimulation.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 VehicleBaseSimulation: GameComponent
17 {
19  proto external bool HasAnyGroundContact();
21  proto external vector GetGForce();
23  proto external float GetGForceMagnitude();
25  proto external bool IsValid();
26 
27  // callbacks
28 
33  event protected void OnInit(IEntity owner);
34 }
35 
GetGForceMagnitude
proto external float GetGForceMagnitude()
Returns the total amount of acceleration of the vehicle produced by mechanical forces.
GameComponentClass
Definition: GameComponentClass.c:7
HasAnyGroundContact
VehicleBaseSimulationClass GameComponentClass HasAnyGroundContact()
Returns true if any wheel/landing gear has contact with ground or other object.
IsValid
proto external bool IsValid()
Returns true if this component was properly initialized.
VehicleBaseSimulationClass
Definition: VehicleBaseSimulation.c:12
GetGForce
proto external vector GetGForce()
Returns the acceleration of the vehicle produced by mechanical forces.
OnInit
override protected void OnInit(IEntity owner)
Definition: SCR_CharacterCommandHandler_Tests.c:523
GameComponent
Definition: GameComponent.c:12