* When this is True, no physics should be applied.
*
* @return True if movement is controlled by an action, False if not
*/
public boolean isMovementControlled() {
final Action a = this.getCurrentAction();
return a instanceof MovementAction && ((MovementAction) a).isMovementSuppressed();
}