Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_DestructionHeatmapEntry.c
Go to the documentation of this file.
2{
3 //static SCR_DebugShapeManager = new SCR_DebugShapeManager;
4 event override void OnDiag()
5 {
6 #ifndef ENABLE_DIAG
7 return;
8 #endif
9
10 // might want to change colors based on category type.
11
12 vector mins = GetMins();
13 vector maxs = GetMaxs();
14
15 Shape box = Shape.Create(ShapeType.BBOX, 0x30ff0000, ShapeFlags.TRANSP | ShapeFlags.NOZWRITE | ShapeFlags.ADDITIVE | ShapeFlags.ONCE, mins, maxs);
16 }
17}
18
Instance of created debug visualizer.
Definition Shape.c:14
ShapeType
Definition ShapeType.c:13
ShapeFlags
Definition ShapeFlags.c:13