Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
PhysicsGeomDef.c
Go to the documentation of this file.
1/*
2===========================================
3Do not modify, this script is generated
4===========================================
5*/
6
11
15class PhysicsGeomDef: Managed
16{
17 string Name;
18 PhysicsGeom Geometry;
19 vector Frame[4] = {Vector(1, 0, 0), Vector(0, 1, 0), Vector(0, 0, 1), Vector(0, 0, 0)};
20 int ParentNode = -1;
21 string MaterialName;
22 int LayerMask;
23
24 void PhysicsGeomDef(string name, PhysicsGeom geom, string materialName, int layerMask)
25 {
26 Name = name;
27 Geometry = geom;
28 MaterialName = materialName;
29 LayerMask = layerMask;
30 }
31
32}
33
proto native vector Vector(float x, float y, float z)