Hello !
Some features are missing in the proposed functions, I decided to make a suggestion as soon as possible because they seem to me relatively important for the creation of game mode or even mechanics.
__________________________________________________ _
SetPlayerMovementMode
Description
Sets the new player movement mode to player.
Parameters
Return value
This function returns nothing.
__________________________________________________ _
SetPlayerMovementSpeed
Description
Sets the new maximal speed of player.
Parameters
Return value
This function returns nothing.
__________________________________________________ _
LockPlayerMovementMode
Description
Force player to use a movement Mode and can't switch with other ones.
Parameters
Return value
This function returns nothing.
__________________________________________________ _
IsPlayerMovementModeLocked
Description
Determine if player has movement mode locked.
Parameters
Return value
True if movement mode of player is locked, false if not.
Some features are missing in the proposed functions, I decided to make a suggestion as soon as possible because they seem to me relatively important for the creation of game mode or even mechanics.
__________________________________________________ _
SetPlayerMovementMode
Description
Sets the new player movement mode to player.
Code:
SetPlayerMovementMode(player, movementMode)
- player
- movementMode
Return value
This function returns nothing.
__________________________________________________ _
SetPlayerMovementSpeed
Description
Sets the new maximal speed of player.
Code:
SetPlayerMovementSpeed(player, movementSpeed)
- player
- movementSpeed
Return value
This function returns nothing.
__________________________________________________ _
LockPlayerMovementMode
Description
Force player to use a movement Mode and can't switch with other ones.
Code:
LockPlayerMovementMode(player, movementMode)
- player
- movementMode
Return value
This function returns nothing.
__________________________________________________ _
IsPlayerMovementModeLocked
Description
Determine if player has movement mode locked.
Code:
IsPlayerMovementModeLocked(player)
- player
Return value
True if movement mode of player is locked, false if not.
Comment