Abilities
Importing the class
If you need to reference this type directly, like when casting an Array, or as a parameter, you will need to import it. Simply add the import at the top of the file.
import crafttweaker.api.entity.type.player.Abilities;
Members
Getter
Gets the flying speed of the player.script.zs
// Abilities.flyingSpeed as floatmyAbilities.flyingSpeed
Return Type:
float
Setter
Sets the flying speed of the player.script.zs
// Abilities.flyingSpeed = (param0 as float);myAbilities.flyingSpeed = myFloat;
Parameters:
param0: float
Type: float
- The new flying speed of the player. flyingSpeed() as float
Gets the flying speed of the player.script.zs
Returns: The flying speed of the player.
// Abilities.flyingSpeed() as float;myAbilities.flyingSpeed();
Return Type:
float
flyingSpeed(param0 as float)
Sets the flying speed of the player.script.zs
// Abilities.flyingSpeed(param0 as float);myAbilities.flyingSpeed(myFloat);
Parameters:
param0: float
Type: float
- The new flying speed of the player. Getter
Gets the walking speed of the player.script.zs
// Abilities.walkingSpeed as floatmyAbilities.walkingSpeed
Return Type:
float
Setter
Sets the walking speed of the player.script.zs
// Abilities.walkingSpeed = (param0 as float);myAbilities.walkingSpeed = myFloat;
Parameters:
param0: float
Type: float
- The new walking speed of the player. walkingSpeed() as float
Gets the walking speed of the player.script.zs
Returns: The walking speed of the player.
// Abilities.walkingSpeed() as float;myAbilities.walkingSpeed();
Return Type:
float
walkingSpeed(param0 as float)
Sets the walking speed of the player.script.zs
// Abilities.walkingSpeed(param0 as float);myAbilities.walkingSpeed(myFloat);
Parameters:
param0: float
Type: float
- The new walking speed of the player.