Common - Fix animations not playing (#9973)

Update CfgMoves.hpp
This commit is contained in:
johnb432
2024-04-25 06:41:27 +02:00
committed by GitHub
parent 9e6f624a68
commit 1eca83db9f

View File

@ -1,8 +1,5 @@
class CfgMovesBasic { class CfgMovesBasic {
// Idle affects legs when weapon switching - fixes units sliding when holstering weapons class Default;
class Default {
idle = "";
};
// From ACRE // From ACRE
class ManActions { class ManActions {
@ -86,5 +83,14 @@ class CfgMovesMaleSdr: CfgMovesBasic {
class AinvPknlMstpSnonWnonDnon_medic0: HealBase { class AinvPknlMstpSnonWnonDnon_medic0: HealBase {
variantsPlayer[] = {}; variantsPlayer[] = {};
}; };
// Idle affects legs when weapon switching - fixes units sliding when holstering weapons
class AmovPercMstpSnonWnonDnon: StandBase {
idle = "";
};
// Need to reset idle, as it breaks animations otherwise
class CutSceneAnimationBase: AmovPercMstpSnonWnonDnon {
idle = "idleDefault";
};
}; };
}; };