接口 World

所有已知实现类:
WorldImpl

public interface World
世界接口
  • 方法详细资料

    • getBlock

      @NotNull Optional<Block> getBlock(@NotNull Position position)
      获取方块
      参数:
      position - 方块位置
      返回:
      获取到的方块。如果方块未加载或者超出范围,返回空的Optional。
    • getWorldId

      long getWorldId()
      获取世界id
      返回:
      世界id
    • getMaxXSize

      int getMaxXSize()
      获取X轴最大值
      返回:
      返回X轴最大值
    • getMinXSize

      int getMinXSize()
      获取X轴最小值
      返回:
      返回X轴最小值
    • getMaxYSize

      int getMaxYSize()
      获取Y轴最大值
      返回:
      返回Y轴最大值
    • getMinYSize

      int getMinYSize()
      获取Y轴最小值
      返回:
      返回Y轴最小值