We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 894b4f6 commit 86d070dCopy full SHA for 86d070d
Client/game_sa/CAnimBlendAssocGroupSA.cpp
@@ -19,6 +19,22 @@ CAnimBlendAssocGroupSA::CAnimBlendAssocGroupSA ( CAnimBlendAssocGroupSAInterface
19
SetupAnimBlock ();
20
}
21
22
+CAnimBlendAssociation * CAnimBlendAssocGroupSA::CopyAnimation ( unsigned int AnimID )
23
+{
24
+ CAnimBlendAssociation * pAnimAssociationReturn = nullptr;
25
+
26
+ DWORD dwThis = ( DWORD ) m_pInterface;
27
+ DWORD dwFunc = FUNC_CAnimBlendAssocGroup_CopyAnimation;
28
+ _asm
29
+ {
30
+ mov ecx, dwThis
31
+ push AnimID
32
+ call dwFunc
33
+ mov pAnimAssociationReturn, eax
34
+ }
35
+ return pAnimAssociationReturn;
36
+}
37
38
void CAnimBlendAssocGroupSA::InitEmptyAssociations ( RpClump * pClump )
39
{
40
DWORD dwThis = ( DWORD ) m_pInterface;
0 commit comments