public class BlockExplodeEvent extends BlockEvent implements Cancellable
译注:BlockEvent.getBlock()方法返回的是引起爆炸的方块(比如TNT),并不是被炸掉的方块.
Event.Resultblock| 构造器和说明 |
|---|
BlockExplodeEvent(Block what,
java.util.List<Block> blocks,
float yield) |
| 限定符和类型 | 方法和说明 |
|---|---|
java.util.List<Block> |
blockList()
返回被炸毁的方块的列表.
|
static HandlerList |
getHandlerList() |
HandlerList |
getHandlers() |
float |
getYield()
返回这次爆炸炸毁的方块掉落的可能性(小数百分比).
|
boolean |
isCancelled()
获取这个事件是否被取消.一个被取消的事件不会在服务器里被执行,但是仍然会传递事件到其他插件。
|
void |
setCancelled(boolean cancel)
取消这个事件.
|
void |
setYield(float yield)
设置这次爆炸炸毁的方块掉落的可能性(小数百分比).
|
getBlockgetEventName, isAsynchronouspublic boolean isCancelled()
Cancellable原文:Gets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins
isCancelled 在接口中 Cancellablepublic void setCancelled(boolean cancel)
Cancellable原文:Sets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins.
setCancelled 在接口中 Cancellablecancel - 如果你想取消这个事件,则为truepublic java.util.List<Block> blockList()
原文:Returns the list of blocks that would have been removed or were removed from the explosion event.
public float getYield()
原文:Returns the percentage of blocks to drop from this explosion
public void setYield(float yield)
原文:Sets the percentage of blocks to drop from this explosion
yield - 小数百分率public HandlerList getHandlers()
getHandlers 在类中 Eventpublic static HandlerList getHandlerList()