| 177 | |
| 178 | |
| 179 | int CScriptObjectAnimation::DumpStates(IFunctionHandler* pH) |
| 180 | { |
| 181 | GET_ANIM_MANAGER(pAnimationManager); |
| 182 | switch (pH->GetParamCount()) |
| 183 | { |
| 184 | case 0: |
| 185 | pAnimationManager->ExecScriptCommand(CASCMD_DUMP_STATES); |
| 186 | break; |
| 187 | default: |
| 188 | m_pScriptSystem->RaiseError("System.DumpStates wrong number of arguments (%d)", pH->GetParamCount()); |
| 189 | return pH->EndFunctionNull(); |
| 190 | } |
| 191 | return pH->EndFunction(0); |
| 192 | } |
| 193 | |
| 194 | int CScriptObjectAnimation::ExportModels(IFunctionHandler* pH) |
| 195 | { |
nothing calls this directly
no test coverage detected