2015-03-18 00:36:56 +00:00
|
|
|
/*
|
|
|
|
* Author: commy2
|
|
|
|
* Attempt to fix floating physx with disabled damage after setPosXXX commands.
|
|
|
|
*
|
|
|
|
* Arguments:
|
2015-09-20 14:56:35 +00:00
|
|
|
* PhysX object <OBJECT>
|
2015-03-18 00:36:56 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
2015-09-20 14:56:35 +00:00
|
|
|
* None
|
2015-03-18 00:36:56 +00:00
|
|
|
*
|
2015-09-20 14:56:35 +00:00
|
|
|
* Public: No
|
2015-03-18 00:36:56 +00:00
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-12-12 15:48:54 +00:00
|
|
|
params ["_object"];
|
2015-03-18 00:36:56 +00:00
|
|
|
|
|
|
|
// setHitPointDamage requires local object
|
|
|
|
if (!local _object) exitWith {};
|
|
|
|
|
|
|
|
// save and restore hitpoints, see below why
|
2015-12-12 15:48:54 +00:00
|
|
|
private _hitPointDamages = getAllHitPointsDamage _object;
|
2015-03-18 00:36:56 +00:00
|
|
|
|
2015-09-26 12:38:50 +00:00
|
|
|
// get correct format for objects without hitpoints
|
|
|
|
if (_hitPointDamages isEqualTo []) then {
|
2015-12-21 16:05:48 +00:00
|
|
|
_hitPointDamages = [[],[],[]];
|
2015-09-26 12:38:50 +00:00
|
|
|
};
|
2015-03-18 00:36:56 +00:00
|
|
|
|
|
|
|
// this prevents physx objects from floating when near other physx objects with allowDamage false
|
|
|
|
_object setDamage damage _object;
|
|
|
|
|
|
|
|
{
|
2015-09-26 12:38:50 +00:00
|
|
|
_object setHitIndex [_forEachIndex, _x];
|
|
|
|
} forEach (_hitPointDamages select 2);
|