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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,8 +1,5 @@
class CfgMovesBasic {
// Idle affects legs when weapon switching - fixes units sliding when holstering weapons
class Default {
idle = "";
};
class Default;
// From ACRE
class ManActions {
@ -86,5 +83,14 @@ class CfgMovesMaleSdr: CfgMovesBasic {
class AinvPknlMstpSnonWnonDnon_medic0: HealBase {
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";
};
};
};