接口 WorldInfo
- 所有已知子接口:
World
public interface WorldInfo
用于存储一个世界的各种信息.
-
方法详细资料
-
getName
获取世界的唯一名称.原文:Gets the unique name of this world
- 返回:
- 世界的名称
-
getUID
获取世界的唯一UUID.原文:Gets the Unique ID of this world
- 返回:
- 世界的唯一UUID
-
getEnvironment
获取世界的环境
类型.原文:Gets the
World.Environment
type of this world- 返回:
- 这个世界的环境类型
-
getSeed
long getSeed()获取世界的种子.原文:Gets the Seed for this world.
- 返回:
- 这个世界的种子
-
getMinHeight
int getMinHeight()获取这个世界的最低高度.如果最低高度为0, 则只有y=0处才有方块.
原文:Gets the minimum height of this world.
If the min height is 0, there are only blocks from y=0.
- 返回:
- 世界的最低高度
-
getMaxHeight
int getMaxHeight()获取这个世界的最高高度.如果最大高度为100, 则只有y=0到y=99才有方块.
原文:Gets the maximum height of this world.
If the max height is 100, there are only blocks from y=0 to y=99.
- 返回:
- 世界的最高高度
-