| 134 | } |
| 135 | |
| 136 | int CScriptObjectAnimation::DumpDecals(IFunctionHandler* pH) |
| 137 | { |
| 138 | GET_ANIM_MANAGER(pAnimationManager); |
| 139 | switch (pH->GetParamCount()) |
| 140 | { |
| 141 | case 0: |
| 142 | pAnimationManager->ExecScriptCommand(CASCMD_DUMP_DECALS); |
| 143 | break; |
| 144 | default: |
| 145 | m_pScriptSystem->RaiseError("System.DumpDecals wrong number of arguments (%d)", pH->GetParamCount()); |
| 146 | return pH->EndFunctionNull(); |
| 147 | } |
| 148 | return pH->EndFunction(0); |
| 149 | } |
| 150 | |
| 151 | int CScriptObjectAnimation::Start2Anims(IFunctionHandler* pH) |
| 152 | { |
nothing calls this directly
no test coverage detected