类 TexturedMaterial

java.lang.Object
org.bukkit.material.MaterialData
org.bukkit.material.TexturedMaterial
所有已实现的接口:
Cloneable
直接已知子类:
MonsterEggs, SmoothBrick, Step

public abstract class TexturedMaterial extends MaterialData
代表有材质的物品,比如台阶和石砖
  • 构造器详细资料

    • TexturedMaterial

      public TexturedMaterial(Material m)
    • TexturedMaterial

      @Deprecated public TexturedMaterial(int type)
      已过时。
      不安全的参数
      参数:
      type - the raw type id
    • TexturedMaterial

      @Deprecated public TexturedMaterial(int type, byte data)
      已过时。
      不安全的参数
      参数:
      type - the raw type id
      data - the raw data value
    • TexturedMaterial

      @Deprecated public TexturedMaterial(Material type, byte data)
      已过时。
      不安全的参数
      参数:
      type - the type
      data - the raw data value
  • 方法详细资料

    • getTextures

      public abstract List<Material> getTextures()
      检索可能的材质列表.列表的第一个元素将用来作为缺省值.

      原文:Retrieve a list of possible textures. The first element of the list will be used as a default.

      返回:
      这个方块可能的材质列表
    • getMaterial

      public Material getMaterial()
      获取这个方块是由什么物品制成的。

      原文:Gets the current Material this block is made of

      返回:
      这个方块由什么物品制成
    • setMaterial

      public void setMaterial(Material material)
      设置这个方块是由什么物品制成的.

      原文:Sets the material this block is made of

      参数:
      material - 这个方块由什么物品制成
    • getTextureIndex

      @Deprecated protected int getTextureIndex()
      已过时。
      不安全的参数
      获取物品的材质类型。

      译注:该方法即为获取物品数据值。关于数据值,请参考Minecraft Wiki。

      原文:Get material index from data

      返回:
      物品的材质类型
    • setTextureIndex

      @Deprecated protected void setTextureIndex(int idx)
      已过时。
      不安全的参数
      设置物品的材质类型。

      译注:该方法即为设置物品数据值。关于数据值,请参考Minecraft Wiki。

      原文:Set material index

      参数:
      idx - 物品的材质类型
    • toString

      public String toString()
      覆盖:
      toString 在类中 MaterialData
    • clone

      public TexturedMaterial clone()
      覆盖:
      clone 在类中 MaterialData