本文整理汇总了Java中net.minecraft.util.math.AxisAlignedBB.union方法的典型用法代码示例。如果您正苦于以下问题:Java AxisAlignedBB.union方法的具体用法?Java AxisAlignedBB.union怎么用?Java AxisAlignedBB.union使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.minecraft.util.math.AxisAlignedBB
的用法示例。
在下文中一共展示了AxisAlignedBB.union方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getBoundingBox
import net.minecraft.util.math.AxisAlignedBB; //导入方法依赖的package包/类
@Override
public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos) {
state = getActualState(state, source, pos);
AxisAlignedBB def = new AxisAlignedBB(6.5/16, 6.5/16, 6.5/16, 9.5/16, 9.5/16, 9.5/16);
if(state.getValue(NORTH) || state.getValue(STRAIGHT_NS)){
def = def.union(new AxisAlignedBB(6.5/16, 6.5/16, 0, 9.5/16, 9.5/16, 6.5/16));
}
if(state.getValue(SOUTH) || state.getValue(STRAIGHT_NS)){
def = def.union(new AxisAlignedBB(6.5/16, 6.5/16, 9.5/16, 9.5/16, 9.5/16, 1));
}
if(state.getValue(EAST) || state.getValue(STRAIGHT_WE)){
def = def.union(new AxisAlignedBB(0, 6.5/16, 6.5/16, 6.5/16, 9.5/16, 9.5/16));
}
if(state.getValue(WEST) || state.getValue(STRAIGHT_WE)){
def = def.union(new AxisAlignedBB(9.5/16, 6.5/16, 6.5/16, 1, 9.5/16, 9.5/16));
}
if(state.getValue(UP) || state.getValue(STRAIGHT_UD)){
def = def.union(new AxisAlignedBB(6.5/16, 9.5/16, 6.5/16, 9.5/16, 1, 9.5/16));
}
if(state.getValue(DOWN) || state.getValue(STRAIGHT_UD)){
def = def.union(new AxisAlignedBB(6.5/16, 0, 6.5/16, 9.5/16, 6.5/16, 9.5/16));
}
return def;
}