/////////////////////////////////////////////////////////////////////
| 3066 | |
| 3067 | ////////////////////////////////////////////////////////////////////////// |
| 3068 | int CScriptObjectEntity::SetAnimationSpeed(IFunctionHandler *pH) |
| 3069 | { |
| 3070 | CHECK_PARAMETERS(1); |
| 3071 | float fSpeed; |
| 3072 | pH->GetParam(1,fSpeed); |
| 3073 | m_pEntity->SetAnimationSpeed( fSpeed ); |
| 3074 | return pH->EndFunction(); |
| 3075 | } |
| 3076 | |
| 3077 | ////////////////////////////////////////////////////////////////////////// |
| 3078 | int CScriptObjectEntity::SetAnimationTime(IFunctionHandler *pH) |
no test coverage detected