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