void Move()

robot_2Generated
code_blocksInput

Description

The Move method is a member of the CharacterController class in the Sandbox namespace. This method is responsible for moving a character using the current velocity. It is a public, non-static method that does not return any value.

Usage

To use the Move method, you need to have an instance of the CharacterController class. This method will move the character based on the current velocity set in the Velocity property of the CharacterController. Ensure that the velocity is set appropriately before calling this method to achieve the desired movement.

Example

// Example of using the Move method

// Create an instance of CharacterController
CharacterController characterController = new CharacterController();

// Set the velocity for the character
characterController.Velocity = new Vector3(1.0f, 0.0f, 0.0f); // Move along the x-axis

// Call the Move method to move the character
characterController.Move();