public static class Definitions.ObjectDefinition
extends java.lang.Object
Modifier and Type | Method and Description |
---|---|
short |
getID()
Gets the object ID.
|
java.lang.String |
getName()
Gets the object name (alway lowercase).
|
java.lang.String |
getRelatedItem()
Gets the related item of this object (always lowercase).
|
GameImageInformation |
getTexture(int number,
int variation)
This method gets a reference to the object texture.
|
int |
getTextureCount(int variation)
Gets the total amount of used textures for this object, or more precisely,
for a particular object variation.
|
java.lang.String |
getType()
Gets the object type as String (always uppercase).
|
int |
getVariationCount()
Gets the amount of available variations for this object.
|
boolean |
hasCollision()
Gets whether or not this object has collision.
|
boolean |
isChest()
Gets whether or not this object is a chest.
|
boolean |
isDoor()
Gets whether or not this object is a door (or something similar, like
a drawbridge).
|
boolean |
isFurnace()
Gets whether or not this object is a furnace.
|
boolean |
isPickupable()
Gets whether or not this object can be picked up by the player.
|
boolean |
isSign()
Gets whether or not this object is a sign.
|
public short getID()
public java.lang.String getName()
public java.lang.String getType()
public boolean hasCollision()
public int getVariationCount()
public java.lang.String getRelatedItem()
public boolean isPickupable()
public boolean isChest()
public boolean isFurnace()
public boolean isDoor()
public boolean isSign()
public GameImageInformation getTexture(int number, int variation)
number
- the texture number (0-4). Use getTextureCount(int)
to find out the total amount of textures of a particular variation.variation
- the object variation. Default variation is 0.GameImageInformation
object representing the object
texture. This can be used as texture for GuiImage
or
World3DModel
objects, for example.getTextureCount(int)
public int getTextureCount(int variation)
variation
- the object variation. Default variation is 0.