RichAI component movement code

Hey i want to use the RichAI component together with “Chronos” an asset that can control time.

for this i need to find out where in the code the RichAi actually does the movement of the character. I was hoping that some of you might be able to help me out as i cannot seem to find it.

Hi

Take a look at the AIBase.Update method. RichAI inherits from AIBase.

This points to an abstract method called:

protected abstract void MovementUpdate (float deltaTime);

Ah.
The exact position of the code that moves the character depends a bit on the version that you use. In your version the movement should be happening in the AIBase.Move method.

You may also be interested in this thread: Fast Forwarding causing seeker to miss target and wobble