GameType
Link to gametype
Importing the class
Link to importing-the-class
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.world.GameType;
Implemented Interfaces
Link to implemented-interfaces
GameType implements the following interfaces. That means all methods defined in these interfaces are also available in GameType
Enum Constants
Link to enum-constants
GameType is an enum. It has 4 enum constants. They are accessible using the code below.
ZenScript Copy<constant:minecraft:world/gametype:survival>
<constant:minecraft:world/gametype:creative>
<constant:minecraft:world/gametype:adventure>
<constant:minecraft:world/gametype:spectator>
Methods
Link to methods
Name: getId
Return Type: int
ZenScript Copy// GameType.getId() as int
myGameType.getId();
Name: getLongDisplayName
Return Type: Component
ZenScript Copy// GameType.getLongDisplayName() as Component
myGameType.getLongDisplayName();
Name: getName
Return Type: string
ZenScript Copy// GameType.getName() as string
myGameType.getName();
Name: getShortDisplayName
Return Type: Component
ZenScript Copy// GameType.getShortDisplayName() as Component
myGameType.getShortDisplayName();
Name: isBlockPlacingRestricted
Return Type: boolean
ZenScript Copy// GameType.isBlockPlacingRestricted() as boolean
myGameType.isBlockPlacingRestricted();
Name: isCreative
Return Type: boolean
ZenScript Copy// GameType.isCreative() as boolean
myGameType.isCreative();
Name: isSurvival
Return Type: boolean
ZenScript Copy// GameType.isSurvival() as boolean
myGameType.isSurvival();
Name: updatePlayerAbilities
ZenScript CopyGameType.updatePlayerAbilities(abilities as Abilities)
Parameter | Type |
---|---|
Parameter abilities | Type Abilities |
Properties
Link to properties
Name | Type | Has Getter | Has Setter |
---|---|---|---|
Name id | Type int | Has Getter true | Has Setter false |
Name isBlockPlacingRestricted | Type boolean | Has Getter true | Has Setter false |
Name isCreative | Type boolean | Has Getter true | Has Setter false |
Name isSurvival | Type boolean | Has Getter true | Has Setter false |
Name longDisplayName | Type Component | Has Getter true | Has Setter false |
Name name | Type string | Has Getter true | Has Setter false |
Name shortDisplayName | Type Component | Has Getter true | Has Setter false |