mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Speed up carry animation (#7216)
This commit is contained in:
parent
b236cf9a65
commit
5bdbb5c398
13
addons/dragging/CfgMovesMaleSdr.hpp
Normal file
13
addons/dragging/CfgMovesMaleSdr.hpp
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
class CfgMovesMaleSdr: CfgMovesBasic {
|
||||||
|
class InjuredMovedBase;
|
||||||
|
class AgonyBaseRfl;
|
||||||
|
|
||||||
|
class States {
|
||||||
|
class AcinPknlMstpSnonWnonDnon_AcinPercMrunSnonWnonDnon: InjuredMovedBase {
|
||||||
|
speed = -10; // 1/10
|
||||||
|
};
|
||||||
|
class AinjPfalMstpSnonWrflDnon_carried_Up: AgonyBaseRfl {
|
||||||
|
speed = -10; // 1/10
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
@ -17,3 +17,4 @@ class CfgPatches {
|
|||||||
#include "CfgEventHandlers.hpp"
|
#include "CfgEventHandlers.hpp"
|
||||||
#include "CfgVehicles.hpp"
|
#include "CfgVehicles.hpp"
|
||||||
#include "CfgMovesBasic.hpp"
|
#include "CfgMovesBasic.hpp"
|
||||||
|
#include "CfgMovesMaleSdr.hpp"
|
||||||
|
@ -48,7 +48,7 @@ if (_target isKindOf "CAManBase") then {
|
|||||||
[_unit, "AcinPknlMstpSnonWnonDnon_AcinPercMrunSnonWnonDnon", 2, true] call EFUNC(common,doAnimation);
|
[_unit, "AcinPknlMstpSnonWnonDnon_AcinPercMrunSnonWnonDnon", 2, true] call EFUNC(common,doAnimation);
|
||||||
[_target, "AinjPfalMstpSnonWrflDnon_carried_Up", 2, true] call EFUNC(common,doAnimation);
|
[_target, "AinjPfalMstpSnonWrflDnon_carried_Up", 2, true] call EFUNC(common,doAnimation);
|
||||||
|
|
||||||
_timer = CBA_missionTime + 15;
|
_timer = CBA_missionTime + 10;
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user