! Starts spawning particles @param fSpawnRate first operand (float) rate of particle spawn @return result of the operation (int) */
| 236 | @return result of the operation (int) |
| 237 | */ |
| 238 | int CScriptObjectAnimation::TestParticles(IFunctionHandler *pH) |
| 239 | { |
| 240 | GET_ANIM_MANAGER(pAnimationManager); |
| 241 | pAnimationManager->ExecScriptCommand (CASCMD_TEST_PARTICLES); |
| 242 | return pH->EndFunction(0); |
| 243 | } |
| 244 | |
| 245 | /*! Starts spawning particles |
| 246 | @param fSpawnRate first operand (float) rate of particle spawn |
nothing calls this directly
no test coverage detected