FourKit 29eeeb8
The LCE C# Server Plugin API
Loading...
Searching...
No Matches
Minecraft.Server.FourKit.Block Namespace Reference

Classes

class  BiomeHelper
class  Block
 Represents a block. This is a live object, and only one Block may exist for any given location in a world. More...
class  BlockFaceExtensions
class  BlockState
 Represents a captured state of a block, which will not change automatically. More...

Enumerations

enum  Action {
  LEFT_CLICK_AIR = 0 , LEFT_CLICK_BLOCK = 1 , RIGHT_CLICK_AIR = 2 , RIGHT_CLICK_BLOCK = 3 ,
  PHYSICAL = 4
}
 Represents the action type for a player interaction. More...
enum  Biome {
  OCEAN = 0 , PLAINS = 1 , DESERT = 2 , EXTREME_HILLS = 3 ,
  FOREST = 4 , TAIGA = 5 , SWAMPLAND = 6 , RIVER = 7 ,
  HELL = 8 , SKY = 9 , FROZEN_OCEAN = 10 , FROZEN_RIVER = 11 ,
  ICE_PLAINS = 12 , ICE_MOUNTAINS = 13 , MUSHROOM_ISLAND = 14 , MUSHROOM_SHORE = 15 ,
  BEACH = 16 , DESERT_HILLS = 17 , FOREST_HILLS = 18 , TAIGA_HILLS = 19 ,
  SMALL_MOUNTAINS = 20 , JUNGLE = 21 , JUNGLE_HILLS = 22
}
enum  BlockFace {
  DOWN = 0 , UP = 1 , NORTH = 2 , SOUTH = 3 ,
  WEST = 4 , EAST = 5 , SELF = 6 , NORTH_EAST ,
  NORTH_WEST , SOUTH_EAST , SOUTH_WEST , WEST_NORTH_WEST ,
  NORTH_NORTH_WEST , NORTH_NORTH_EAST , EAST_NORTH_EAST , EAST_SOUTH_EAST ,
  SOUTH_SOUTH_EAST , SOUTH_SOUTH_WEST , WEST_SOUTH_WEST
}
 Represents the face of a block.

Enumeration Type Documentation

◆ Action

Represents the action type for a player interaction.

Enumerator
LEFT_CLICK_AIR 

Left-clicking the air.

LEFT_CLICK_BLOCK 

Left-clicking a block.

RIGHT_CLICK_AIR 

Right-clicking the air.

RIGHT_CLICK_BLOCK 

Right-clicking a block.

PHYSICAL 

Stepping onto or into a block (Ass-pressure). Examples: Jumping on soil, Standing on pressure plate, Triggering redstone ore, Triggering tripwire.