mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
5b8fa4d4f1
Instead of changing the event names to match the new standards and also changing every single call to `FUNC(statusEffect_set)`/`FUNC(statusEffect_get)` I figured it made sense to only change the event names and the internal workings of `FUNC(statusEffect_sendEffects)` to automatically add the appropriate prefix.
45 lines
1.3 KiB
Plaintext
45 lines
1.3 KiB
Plaintext
/*
|
|
* Author: commy2
|
|
* Attempt to fix floating physx with disabled damage after setPosXXX commands.
|
|
* Handles the "fixFloating" event
|
|
*
|
|
* Arguments:
|
|
* PhysX object <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_object"];
|
|
|
|
// setHitPointDamage requires local object
|
|
if (!local _object) exitWith {};
|
|
//Ignore mans
|
|
if (_object isKindOf "CAManBase") exitWith {};
|
|
|
|
//We need to manually set allowDamage to true for setHitIndex to function
|
|
[QGVAR(blockDamage), [_object, 0]] call CBA_fnc_localEvent;
|
|
|
|
// save and restore hitpoints, see below why
|
|
private _hitPointDamages = getAllHitPointsDamage _object;
|
|
|
|
// get correct format for objects without hitpoints
|
|
if (_hitPointDamages isEqualTo []) then {
|
|
_hitPointDamages = [[],[],[]];
|
|
};
|
|
|
|
// this prevents physx objects from floating when near other physx objects with allowDamage false
|
|
_object setDamage damage _object;
|
|
|
|
{
|
|
_object setHitIndex [_forEachIndex, _x];
|
|
} forEach (_hitPointDamages select 2);
|
|
|
|
//manually re-enable allowDamage to previous setting (ref statusEffect_funcs)
|
|
private _effectVarName = format [QGVAR(effect_%1), "blockDamage"];
|
|
private _effectNumber = _object getVariable [_effectVarName, 0];
|
|
[QGVAR(blockDamage), [_object, _effectNumber]] call CBA_fnc_localEvent;
|