mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
63 lines
1.8 KiB
C++
63 lines
1.8 KiB
C++
|
|
||
|
class SlotInfo;
|
||
|
class PointerSlot: SlotInfo {
|
||
|
compatibleItems[] += {"ACE_acc_pointer_red","ACE_acc_pointer_green"};
|
||
|
};
|
||
|
|
||
|
class CfgWeapons {
|
||
|
class ItemCore;
|
||
|
class InventoryFlashLightItem_Base_F;
|
||
|
|
||
|
class ACE_acc_pointer_red: ItemCore {
|
||
|
author = "$STR_ACE_Common_ACETeam";
|
||
|
_generalMacro = "ACE_acc_pointer_red";
|
||
|
scope = 2;
|
||
|
displayName = "$STR_ACE_Laserpointer_red";
|
||
|
descriptionUse = "$STR_ACE_Laserpointer_useLaser";
|
||
|
picture = "\A3\weapons_F\Data\UI\gear_accv_pointer_CA.paa";
|
||
|
model = "\A3\weapons_f\acc\accv_pointer_F";
|
||
|
descriptionShort = "$STR_ACE_Laserpointer_Description";
|
||
|
|
||
|
class ItemInfo: InventoryFlashLightItem_Base_F {
|
||
|
mass = 6;
|
||
|
|
||
|
class Pointer {};
|
||
|
|
||
|
class FlashLight {
|
||
|
color[] = {0,0,0};
|
||
|
ambient[] = {0,0,0};
|
||
|
intensity = 0;
|
||
|
size = 0;
|
||
|
innerAngle = 0;
|
||
|
outerAngle = 0;
|
||
|
coneFadeCoef = 5;
|
||
|
position = "flash dir";
|
||
|
direction = "flash";
|
||
|
useFlare = 0;
|
||
|
flareSize = 0;
|
||
|
flareMaxDistance = "100.0f";
|
||
|
dayLight = 0;
|
||
|
|
||
|
class Attenuation {
|
||
|
start = 0;
|
||
|
constant = 0;
|
||
|
linear = 0;
|
||
|
quadratic = 0;
|
||
|
hardLimitStart = 0;
|
||
|
hardLimitEnd = 0;
|
||
|
};
|
||
|
|
||
|
scale[] = {0};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
inertia = 0.1;
|
||
|
};
|
||
|
|
||
|
class ACE_acc_pointer_green: ACE_acc_pointer_red {
|
||
|
author = "$STR_ACE_Common_ACETeam";
|
||
|
_generalMacro = "ACE_acc_pointer_green";
|
||
|
displayName = "$STR_ACE_Laserpointer_green";
|
||
|
};
|
||
|
};
|