readonly int Character.WalkSpeedY;
Gets the character's walking speed in the Y direction. If using uniform movement,
this will be the same as the X walking speed.
This property is read-only. To change the walking speed, use the SetWalkSpeed function.
Example:
Display("player's y speed: %d", player.WalkSpeedY);
will display the player's Y speed.
See Also: Character.SetWalkSpeed,
Character.WalkSpeedX
|