2015-01-11 18:24:19 +00:00
|
|
|
class CfgVehicles {
|
2015-04-02 16:35:36 +00:00
|
|
|
class All;
|
2015-01-11 18:24:19 +00:00
|
|
|
|
2015-04-02 16:35:36 +00:00
|
|
|
class LaserTarget: All {
|
2015-04-12 21:03:15 +00:00
|
|
|
// @TODO: Changing the model and simulation hides it, but THEN IT DOESNT SPAWN WTF!?
|
|
|
|
model = "\A3\Weapons_F\empty.p3d";
|
|
|
|
simulation = "nvmarker";
|
|
|
|
nvTarget = 1;
|
|
|
|
//simulation = "laserTarget";
|
|
|
|
//threat[] = {0,0,0};
|
|
|
|
class EventHandlers {
|
|
|
|
init = QUOTE(_this call FUNC(laser_init));
|
|
|
|
};
|
|
|
|
|
|
|
|
diffuse[] = {0,0,0};
|
|
|
|
ambient[] = {0,0,0};
|
|
|
|
brightness = 0;
|
|
|
|
name = "pozicni blik";
|
|
|
|
drawLight = 0;
|
|
|
|
drawLightSize = 0;
|
|
|
|
drawLightCenterSize = 0;
|
|
|
|
activeLight = 0;
|
|
|
|
blinking = 0;
|
|
|
|
dayLight = 0;
|
|
|
|
onlyInNvg = 0;
|
|
|
|
useFlare = 0;
|
2015-04-12 18:29:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Visual laserTarget override
|
|
|
|
class ACE_LaserTarget_Visual : LaserTarget {
|
2015-04-12 21:03:15 +00:00
|
|
|
//model = "\A3\Weapons_f\laserTgt.p3d";
|
2015-04-02 16:35:36 +00:00
|
|
|
};
|
2015-01-11 18:24:19 +00:00
|
|
|
};
|