public final class ModelInformation
extends java.lang.Object
ModelInformation
object
only once and reuse it every time you need it. It's safe to use the same
ModelInformation
reference for several players and in
multiple threads.Constructor and Description |
---|
ModelInformation(java.io.File file)
Creates a new 3D model information object and loads a model from a file.
|
ModelInformation(Plugin plugin,
java.lang.String resource)
Creates a new model information object and loads a model from the plugin jar file.
|
ModelInformation(java.lang.String filepath)
Creates a new model information object and loads a model from a file.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object o) |
BoundingInformation |
getBoundingInformation()
Gets a BoundingInformation which describes the extents of the model, i.e.
|
java.lang.String |
getChecksum()
Gets the MD5 checksum of this file.
|
byte[] |
getData()
Gets the byte data of the file.
|
java.lang.String |
getExtension()
Gets the file extension.
|
java.lang.String |
getFilename()
Gets the filename.
|
int |
hashCode() |
public ModelInformation(Plugin plugin, java.lang.String resource)
plugin
- a reference to the plugin. This is required to make sure the game
loads the resource from the correct plugin jar.resource
- the path to the resource (inside the jar file).public ModelInformation(java.lang.String filepath)
filepath
- the path to the model file on the harddrive.ModelInformation(java.io.File)
public ModelInformation(java.io.File file)
file
- the file representing the path to the model on the harddrive.ModelInformation(java.lang.String)
public BoundingInformation getBoundingInformation()
public byte[] getData()
public java.lang.String getFilename()
public java.lang.String getExtension()
public java.lang.String getChecksum()
public boolean equals(java.lang.Object o)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object