mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
464ab0cefb
Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> Co-authored-by: PabstMirror <pabstmirror@gmail.com> Co-authored-by: jonpas <jonpas33@gmail.com>
35 lines
913 B
Plaintext
35 lines
913 B
Plaintext
#include "script_component.hpp"
|
|
|
|
ADDON = false;
|
|
|
|
PREP_RECOMPILE_START;
|
|
#include "XEH_PREP.hpp"
|
|
PREP_RECOMPILE_END;
|
|
|
|
#include "initSettings.inc.sqf"
|
|
|
|
// Damage types which do not cause blood spurts
|
|
GVAR(noBloodDamageTypes) = createHashMapFromArray (call (uiNamespace getVariable QGVAR(noBloodDamageTypes)));
|
|
|
|
// blood object model namespace
|
|
GVAR(models) = [] call CBA_fnc_createNamespace;
|
|
|
|
{
|
|
_x params ["_name", "_model"];
|
|
|
|
// createSimpleObject expects a path without the leading slash
|
|
if ((_model select [0,1]) isEqualTo "\") then {
|
|
_model = _model select [1];
|
|
};
|
|
|
|
GVAR(models) setVariable [_name, _model];
|
|
} forEach [
|
|
// higher number means bigger model
|
|
["blooddrop_1", QPATHTOF(data\ace_drop_1.p3d)],
|
|
["blooddrop_2", QPATHTOF(data\ace_drop_2.p3d)],
|
|
["blooddrop_3", QPATHTOF(data\ace_drop_3.p3d)],
|
|
["blooddrop_4", QPATHTOF(data\ace_drop_4.p3d)]
|
|
];
|
|
|
|
ADDON = true;
|