$$ACTION AI Set [o:Object] to have a max speed of [f:MaxSpeed] aAISetMaxSpeed Set the max speed of an object Set the max speed of an object Parameters: Object - the object whose AI mode is set MaxSpeed - Maximum speed $$END */
| 3459 | $$END |
| 3460 | */ |
| 3461 | void aAISetMaxSpeed(int objhandle, float max_speed) { AI_Value(objhandle, VF_SET, AIV_F_MAX_SPEED, &max_speed); } |
| 3462 | |
| 3463 | // Used for all AI Goal calls |
| 3464 | #define DEFAULT_INFLUENCE 1.0 |
no outgoing calls
no test coverage detected