Abilities
Link to abilities
导入类
Link to 导入类
It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.
ZenScript Copyimport crafttweaker.api.entity.type.player.Abilities;
使用方式
Link to 使用方式
Name: getFlyingSpeed
Return Type: float
ZenScript Copy// Abilities.getFlyingSpeed() as float
myAbilities.getFlyingSpeed();
Name: getWalkingSpeed
Return Type: float
ZenScript Copy// Abilities.getWalkingSpeed() as float
myAbilities.getWalkingSpeed();
Name: setFlyingSpeed
ZenScript CopyAbilities.setFlyingSpeed(param0 as float)
参数 | 类型 |
---|---|
参数 param0 | 类型 float |
Name: setWalkingSpeed
ZenScript CopyAbilities.setWalkingSpeed(param0 as float)
参数 | 类型 |
---|---|
参数 param0 | 类型 float |
名称 | 类型 | 可获得 | 可设置 |
---|---|---|---|
名称 flyingSpeed | 类型 float | 可获得 true | 可设置 true |
名称 walkingSpeed | 类型 float | 可获得 true | 可设置 true |