public void Move(float moveHorizontal, float moveVertical)
 {
     movementController.MoveObject(new Vector3(moveHorizontal, 0.0f, moveVertical) * speed);
 }