File tree Expand file tree Collapse file tree 2 files changed +0
-11
lines changed Expand file tree Collapse file tree 2 files changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -32,18 +32,10 @@ static const char* const kGateWayAnimationName = "run_wuzi";
32
32
33
33
CAnimManagerSA::CAnimManagerSA ()
34
34
{
35
- MemSetFast (m_pAnimAssocGroups, 0 , sizeof (m_pAnimAssocGroups));
36
- MemSetFast (m_pAnimBlocks, 0 , sizeof (m_pAnimBlocks));
37
35
}
38
36
39
37
CAnimManagerSA::~CAnimManagerSA ()
40
38
{
41
- for (unsigned int i = 0 ; i < MAX_ANIM_GROUPS; i++)
42
- if (m_pAnimAssocGroups[i])
43
- delete m_pAnimAssocGroups[i];
44
- for (unsigned int i = 0 ; i < MAX_ANIM_BLOCKS; i++)
45
- if (m_pAnimBlocks[i])
46
- delete m_pAnimBlocks[i];
47
39
}
48
40
49
41
void CAnimManagerSA::Initialize ()
Original file line number Diff line number Diff line change @@ -165,7 +165,4 @@ class CAnimManagerSA : public CAnimManager
165
165
166
166
bool IsValidGroup (std::uint32_t uiAnimGroup) const ;
167
167
bool IsValidAnim (std::uint32_t uiAnimGroup, std::uint32_t uiAnimID) const ;
168
- private:
169
- CAnimBlendAssocGroup* m_pAnimAssocGroups[MAX_ANIM_GROUPS];
170
- CAnimBlock* m_pAnimBlocks[MAX_ANIM_BLOCKS];
171
168
};
You can’t perform that action at this time.
0 commit comments