typesforbukkit
Version:
Types For Bukkit
20 lines (18 loc) • 808 B
text/typescript
// API Link: https://tfb.neocities.org/1.16.5/org/bukkit/HeightMap
namespace org.bukkit {
/** @description Further information regarding heightmaps */
export enum HeightMap {
/** @description The highest block that blocks motion or contains a fluid */
MOTION_BLOCKING,
/** @description The highest block that blocks motion or contains a fluid or is in the <a href="Taghtml#LEAVES"><code>TagLEAVES</code></a> */
MOTION_BLOCKING_NO_LEAVES,
/** @description The highest non-air block, solid block */
OCEAN_FLOOR,
/** @description The highest block that is neither air nor contains a fluid, for worldgen */
OCEAN_FLOOR_WG,
/** @description The highest non-air block */
WORLD_SURFACE,
/** @description The highest non-air block, for worldgen */
WORLD_SURFACE_WG
}
}