本文整理汇总了Java中org.bukkit.entity.Horse.setMaxDomestication方法的典型用法代码示例。如果您正苦于以下问题:Java Horse.setMaxDomestication方法的具体用法?Java Horse.setMaxDomestication怎么用?Java Horse.setMaxDomestication使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.bukkit.entity.Horse
的用法示例。
在下文中一共展示了Horse.setMaxDomestication方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: apply
import org.bukkit.entity.Horse; //导入方法依赖的package包/类
@Override
public boolean apply(Entity entity) {
PreCon.notNull(entity);
PreCon.isValid(entity instanceof Horse, "org.bukkit.entity.Horse expected.");
Horse horse = (Horse) entity;
horse.setColor(_color);
horse.setVariant(_variant);
horse.setStyle(_style);
horse.setMaxDomestication(_maxDomestication);
horse.setDomestication(_domestication);
horse.setCarryingChest(_hasChest);
horse.setJumpStrength(_jumpStrength);
return true;
}
示例2: onSpawn
import org.bukkit.entity.Horse; //导入方法依赖的package包/类
@Override
public void onSpawn() {
Horse horse = (Horse) getNPC().getEntity();
if (color != null) horse.setColor(color);
if (variant != null) horse.setVariant(variant);
if (style != null) horse.setStyle(style);
if (jumpStrength != null) horse.setJumpStrength(jumpStrength);
if (domestication != null) horse.setDomestication(domestication);
if (maxDomestication != null) horse.setMaxDomestication(maxDomestication);
}
示例3: apply
import org.bukkit.entity.Horse; //导入方法依赖的package包/类
@Override
public void apply(Entity entity) {
if (!(entity instanceof Horse)) return;
Horse horse = (Horse)entity;
horse.setColor(color);
horse.setVariant(variant);
horse.setStyle(style);
horse.getInventory().setSaddle(saddle);
horse.getInventory().setArmor(armor);
horse.setDomestication(domestication);
horse.setMaxDomestication(maxDomestication);
horse.setJumpStrength(jumpStrength);
}