本文整理匯總了Java中org.bukkit.event.block.BlockIgniteEvent.IgniteCause方法的典型用法代碼示例。如果您正苦於以下問題:Java BlockIgniteEvent.IgniteCause方法的具體用法?Java BlockIgniteEvent.IgniteCause怎麽用?Java BlockIgniteEvent.IgniteCause使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.bukkit.event.block.BlockIgniteEvent
的用法示例。
在下文中一共展示了BlockIgniteEvent.IgniteCause方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: onBlockIgnite
import org.bukkit.event.block.BlockIgniteEvent; //導入方法依賴的package包/類
@EventHandler(ignoreCancelled = true)
public void onBlockIgnite(BlockIgniteEvent event) {
BlockIgniteEvent.IgniteCause cause =
BlockIgniteEvent.IgniteCause.FLINT_AND_STEEL;
if (event.getCause().equals(cause)) {
return;
}
BlockState newState = this.applyState(event.getBlock(), Material.FIRE);
this.post(event,
event.getBlock().getState(),
newState,
event.getPlayer());
}
示例2: of
import org.bukkit.event.block.BlockIgniteEvent; //導入方法依賴的package包/類
public static IgnitionHook.IgnitionCause of(BlockIgniteEvent.IgniteCause gameMode) {
return IgniteCauseConverter.map.inverse().get(gameMode);
}
示例3: BlockIgniteEvent
import org.bukkit.event.block.BlockIgniteEvent; //導入方法依賴的package包/類
@Deprecated public BlockIgniteEvent(Block theBlock, BlockIgniteEvent.IgniteCause cause, Player thePlayer) {
}
示例4: getCause
import org.bukkit.event.block.BlockIgniteEvent; //導入方法依賴的package包/類
public BlockIgniteEvent.IgniteCause getCause() {
return null;
}