mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
30 lines
721 B
Plaintext
30 lines
721 B
Plaintext
#include "script_component.hpp"
|
|
|
|
ADDON = false;
|
|
|
|
PREP_RECOMPILE_START;
|
|
#include "XEH_PREP.hpp"
|
|
PREP_RECOMPILE_END;
|
|
|
|
// 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;
|