ACE3/optionals/tracers/model.cfg

52 lines
1.4 KiB
INI
Raw Permalink Normal View History

2016-05-30 16:37:03 +00:00
class CfgSkeletons {
class Default {
isDiscrete = 1;
skeletonInherit = "";
skeletonBones[] = {};
};
class ACE_Tracer_Skeleton: Default {};
2016-05-30 16:37:03 +00:00
class ACE_Tracer_Skeleton_Default: ACE_Tracer_Skeleton { // BWC
skeletonInherit = "ACE_Tracer_Skeleton";
skeletonBones[]= {
"core","",
"halo","",
"tracer",""
};
};
};
class CfgModels {
class Default {
sectionsInherit="";
sections[] = {};
skeletonName = "";
};
class ACE_Tracer: Default {
skeletonName = "ACE_Tracer_Skeleton";
};
class ACE_Tracer_Default: ACE_Tracer { // BWC
skeletonName = "ACE_Tracer_Skeleton_Default";
};
class ace_40mm_tracer_red: Default {};
// Shell Tracers
class ace_shell_tracer_green: ACE_Tracer {};
class ace_shell_tracer_red: ACE_Tracer {};
class ace_shell_tracer_white: ACE_Tracer {};
Add Vehicle Damage (ACE2 port) & Enhance Cook-Off (#7565) * Initital port of ACE2 Vehicle Damage * Add fire damage and burning people * Migrate vehicle damge stuff from cookoff. Change cookoff function to enhance effect. * Minor tweaks * Add incendiary values to all applicable ammunition. Add engine fire/smoke if hit enough * Handle car damage more elegantly. * Added ability to create fire sources arbitrarily * tweaks * Add chance to detonate after cookoff * disable compile cache * Move blown-off turret config to vehicle damage. Add settings inititalized EH for initializing off settings * tabs->spaces * Various code improvements * Change to count loop for deleting effects * update addon requirements * remove vanilla config requirements * Add RHS compatability * RHS compat. Various QOL fixes/changes * Various tweaks to compats and code. * High-Explosive damage tweak * Change how penetration is calculated for parts * Fix RHS compat * Create setting for flare effect * increase burning scream sounds * swap out file name for snake_case * move incendiary values out of vehicle damage. remove medical dependency * vehicle_dammage - update all refs to snake * sqf fixes * fix fire string package caps * fix pboprefix * Default setting to on * Add variables to enable/disable ring fire to avoid goofy looking vehicles. Enhance how particles are cleaned up. Remove advanced penetration simulation. Change how fire intensity is calculated. Add setting to "disable" vehicle after cookoff * Fix bug where event handler wasn't giving the damage last. * change to snake * fix build errors * Fix UBC * Fix Order of Operations * avoid O^2 events * Make sure that no damage processing happens on dead units * Change some if statements * Keep track of player's death to stop various things * add quotes to right middle wheen * Add VD documentation * fire docs * Code quality fixes * Clarify documentation * define IDD * switch global -> server * Add newline between header and first code statement * stop the dead from suffering Its hard to tell when a unit is dead or in spectator, so check the config of the unit to determine it. * Add settings to disable cook-off effects * Delete effects if vehicle is deleted before cookoff occurs. Don't cookoff player ammo. Throw weapon better * Move fire into own PR * fix tabs and macro * Shuffle crew indices so that a random person is first on the list to be injured each time * fix effects not clearing Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2021-10-14 15:49:27 +00:00
class ace_shell_tracer_yellow: ACE_Tracer {};
2016-05-30 16:37:03 +00:00
// Bullet tracers
class ace_TracerGreen2: ACE_Tracer_Default {};
class ace_TracerRed2: ACE_Tracer_Default {};
class ace_TracerWhite2: ACE_Tracer_Default {};
2016-05-30 16:37:03 +00:00
class ace_TracerYellow2: ACE_Tracer_Default {};
2016-05-30 16:37:03 +00:00
// Bullet tracers, alternative
class tracer_green_2: ACE_Tracer {};
class tracer_red_2: ACE_Tracer {};
class tracer_yellow_2: ACE_Tracer {};
};