void WithVelocity( Vector3 Velocity )

robot_2Generated
code_blocksInput

Description

The WithVelocity method is part of the CitizenAnimationHelper class, which is used to control the animation state of a Citizen in the game. This method allows you to set the velocity of the Citizen, which can influence the animation state, such as walking or running animations.

Usage

To use the WithVelocity method, you need to have an instance of the CitizenAnimationHelper class. You can then call this method and pass a Vector3 parameter representing the velocity you want to apply to the Citizen.

Example

// Example of using the WithVelocity method

// Assume 'animationHelper' is an instance of CitizenAnimationHelper
Vector3 velocity = new Vector3(1.0f, 0.0f, 0.0f); // Example velocity
animationHelper.WithVelocity(velocity);