* Sets the move speed for an AI object */
| 419 | * Sets the move speed for an AI object |
| 420 | */ |
| 421 | DefineEngineMethod( AIClient, setMoveSpeed, void, (F32 speed), , "ai.setMoveSpeed( float );" ) |
| 422 | { |
| 423 | AIClient *ai = static_cast<AIClient *>( object ); |
| 424 | ai->setMoveSpeed( speed ); |
| 425 | } |
| 426 | |
| 427 | /** |
| 428 | * Stops all AI movement, halt! |
no test coverage detected