Dayz Explorer 1.29.162510
Loading...
Searching...
No Matches
physicsgeomdef.c
Go to the documentation of this file.
1
5
9class PhysicsGeomDef: Managed
10{
11 string Name;
12 dGeom Geometry;
13 vector Frame[4] = {Vector(1, 0, 0), Vector(0, 1, 0), Vector(0, 0, 1), Vector(0, 0, 0)};
14 int ParentNode = -1;
15 string MaterialName;
16 int LayerMask;
17
18 void PhysicsGeomDef(string name, dGeom geom, string materialName, int layerMask)
19 {
20 Name = name;
21 Geometry = geom;
22 MaterialName = materialName;
23 LayerMask = layerMask;
24 }
25
26}
27
PlayerSpawnPresetDiscreteItemSetSlotData name
one set for cargo
TODO doc.
Definition enscript.c:118
proto native vector Vector(float x, float y, float z)
Vector constructor from components.
PhysicsGeom dGeom
Definition physicsgeom.c:9