File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -760,7 +760,12 @@ CAnimBlendHierarchy * CAnimManagerSA::GetAnimBlendHierarchy ( CAnimBlendHierarch
760
760
}
761
761
return NULL ;
762
762
}
763
-
763
+
764
+ std::unique_ptr < CAnimBlendSequence > CAnimManagerSA::GetAnimBlendSequence ( CAnimBlendSequenceSAInterface * pInterface )
765
+ {
766
+ return std::make_unique < CAnimBlendSequenceSA > ( pInterface );
767
+ }
768
+
764
769
bool CAnimManagerSA::isGateWayAnimationHierarchy ( CAnimBlendHierarchySAInterface * pInterface )
765
770
{
766
771
return pGame->GetKeyGen ()->GetUppercaseKey ( m_kGateWayAnimationName.c_str ( ) ) == pInterface->iHashKey ;
Original file line number Diff line number Diff line change @@ -149,7 +149,10 @@ class CAnimManagerSA : public CAnimManager
149
149
CAnimBlendAssocGroup * GetAnimBlendAssocGroup ( CAnimBlendAssocGroupSAInterface * pInterface );
150
150
CAnimBlock * GetAnimBlock ( CAnimBlockSAInterface * pInterface );
151
151
CAnimBlendHierarchy * GetAnimBlendHierarchy ( CAnimBlendHierarchySAInterface * pInterface );
152
-
152
+
153
+ // MTA members, but use this strictly for custom animations only
154
+ std::unique_ptr < CAnimBlendSequence > GetAnimBlendSequence ( CAnimBlendSequenceSAInterface * pInterface );
155
+
153
156
bool isGateWayAnimationHierarchy ( CAnimBlendHierarchySAInterface * pInterface );
154
157
const SString & GetGateWayBlockName ( void );
155
158
const SString & GetGateWayAnimationName ( void );
You can’t perform that action at this time.
0 commit comments