mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Merge remote-tracking branch 'origin/ballistics_effects' into lasers
This commit is contained in:
commit
19bc75dacd
20
addons/ballistics/CfgAmmo.hpp
Normal file
20
addons/ballistics/CfgAmmo.hpp
Normal file
@ -0,0 +1,20 @@
|
||||
class CfgAmmo {
|
||||
class BulletCore;
|
||||
|
||||
class BulletBase: BulletCore {
|
||||
timeToLive = 15; // Default: 6, doubleplusgood all munition range.
|
||||
};
|
||||
|
||||
class B_20mm : BulletBase {
|
||||
timeToLive = 30;
|
||||
};
|
||||
class B_25mm : BulletBase {
|
||||
timeToLive = 30;
|
||||
};
|
||||
class B_35mm_AA : BulletBase {
|
||||
timeToLive = 30;
|
||||
};
|
||||
class B_30mm_AP : BulletBase {
|
||||
timeToLive = 30;
|
||||
};
|
||||
};
|
@ -14,3 +14,4 @@ class CfgPatches {
|
||||
|
||||
#include "CfgVehicles.hpp"
|
||||
#include "CfgWeapons.hpp"
|
||||
#include "CfgAmmo.hpp"
|
Loading…
Reference in New Issue
Block a user