本文整理汇总了Java中net.minecraft.world.World.setBlockMetadataWithNotify方法的典型用法代码示例。如果您正苦于以下问题:Java World.setBlockMetadataWithNotify方法的具体用法?Java World.setBlockMetadataWithNotify怎么用?Java World.setBlockMetadataWithNotify使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.minecraft.world.World
的用法示例。
在下文中一共展示了World.setBlockMetadataWithNotify方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: updateBlockState
import net.minecraft.world.World; //导入方法依赖的package包/类
public static void updateBlockState(boolean active, World world, int x, int y, int z) {
int direction = world.getBlockMetadata(x, y, z);
TileEntity tileEntity = world.getTileEntity(x, y, z);
isBurning = true;
if(active)
world.setBlock(x, y, z, TechnicalBlock.ElectrolyserActive);
else
world.setBlock(x, y, z, TechnicalBlock.ElectrolyserIdle);
isBurning = false;
world.setBlockMetadataWithNotify(x, y, z, direction, 2);
if(tileEntity != null) {
tileEntity.validate();
world.setTileEntity(x, y, z, tileEntity);
}
}
示例2: updateBlockState
import net.minecraft.world.World; //导入方法依赖的package包/类
public static void updateBlockState(boolean active, World world, int x, int y, int z) {
int direction = world.getBlockMetadata(x, y, z);
TileEntity tileEntity = world.getTileEntity(x, y, z);
isBurning = true;
if(active)
world.setBlock(x, y, z, TechnicalBlock.CentrifugeAdvancedActive);
else
world.setBlock(x, y, z, TechnicalBlock.CentrifugeAdvancedIdle);
isBurning = false;
world.setBlockMetadataWithNotify(x, y, z, direction, 2);
if(tileEntity != null) {
tileEntity.validate();
world.setTileEntity(x, y, z, tileEntity);
}
}
示例3: func_149957_e
import net.minecraft.world.World; //导入方法依赖的package包/类
@Override
public void func_149957_e(World world, int x, int y, int z) {
if (!world.provider.hasNoSky) {
int meta = world.getBlockMetadata(x, y, z);
int light = world.getSavedLightValue(EnumSkyBlock.Sky, x, y, z) - world.skylightSubtracted;
float angle = world.getCelestialAngleRadians(1.0F);
if (angle < (float) Math.PI)
angle += (0.0F - angle) * 0.2F;
else
angle += ((float) Math.PI * 2F - angle) * 0.2F;
light = Math.round(light * MathHelper.cos(angle));
if (light < 0)
light = 0;
if (light > 15)
light = 15;
light = invertedValues[light];
if (meta != light)
world.setBlockMetadataWithNotify(x, y, z, light, 3);
}
}
示例4: updateBlockState
import net.minecraft.world.World; //导入方法依赖的package包/类
public static void updateBlockState(boolean active, World world, int x, int y, int z) {
int direction = world.getBlockMetadata(x, y, z);
TileEntity tileEntity = world.getTileEntity(x, y, z);
isBurning = true;
if(active)
world.setBlock(x, y, z, TechnicalBlock.RepairingForgeMediumActive);
else
world.setBlock(x, y, z, TechnicalBlock.RepairingForgeMediumIdle);
isBurning = false;
world.setBlockMetadataWithNotify(x, y, z, direction, 2);
if(tileEntity != null) {
tileEntity.validate();
world.setTileEntity(x, y, z, tileEntity);
}
}
示例5: updateBlockState
import net.minecraft.world.World; //导入方法依赖的package包/类
public static void updateBlockState(boolean active, World world, int x, int y, int z) {
int direction = world.getBlockMetadata(x, y, z);
TileEntity tileEntity = world.getTileEntity(x, y, z);
isBurning = true;
if (active)
world.setBlock(x, y, z, TechnicalBlock.ElectricFurnaceAdvancedActive);
else
world.setBlock(x, y, z, TechnicalBlock.ElectricFurnaceAdvancedIdle);
isBurning = false;
world.setBlockMetadataWithNotify(x, y, z, direction, 2);
if (tileEntity != null) {
tileEntity.validate();
world.setTileEntity(x, y, z, tileEntity);
}
}
示例6: updateBlockState
import net.minecraft.world.World; //导入方法依赖的package包/类
public static void updateBlockState(boolean active, World world, int x, int y, int z) {
int direction = world.getBlockMetadata(x, y, z);
TileEntity tileEntity = world.getTileEntity(x, y, z);
isBurning = true;
if (active)
world.setBlock(x, y, z, TechnicalBlock.ElectricFurnaceMediumActive);
else
world.setBlock(x, y, z, TechnicalBlock.ElectricFurnaceMediumIdle);
isBurning = false;
world.setBlockMetadataWithNotify(x, y, z, direction, 2);
if (tileEntity != null) {
tileEntity.validate();
world.setTileEntity(x, y, z, tileEntity);
}
}
示例7: updateBlockState
import net.minecraft.world.World; //导入方法依赖的package包/类
public static void updateBlockState(boolean active, World world, int x, int y, int z) {
int direction = world.getBlockMetadata(x, y, z);
TileEntity tileEntity = world.getTileEntity(x, y, z);
isBurning = true;
if (active)
world.setBlock(x, y, z, TechnicalBlock.MinerAdvancedActive);
else
world.setBlock(x, y, z, TechnicalBlock.MinerAdvancedIdle);
isBurning = false;
world.setBlockMetadataWithNotify(x, y, z, direction, 2);
if (tileEntity != null) {
tileEntity.validate();
world.setTileEntity(x, y, z, tileEntity);
}
}
示例8: updateBlockState
import net.minecraft.world.World; //导入方法依赖的package包/类
public static void updateBlockState(boolean active, World world, int x, int y, int z) {
int direction = world.getBlockMetadata(x, y, z);
TileEntity tileEntity = world.getTileEntity(x, y, z);
isBurning = true;
if (active)
world.setBlock(x, y, z, TechnicalBlock.ElectricFurnaceBasicActive);
else
world.setBlock(x, y, z, TechnicalBlock.ElectricFurnaceBasicIdle);
isBurning = false;
world.setBlockMetadataWithNotify(x, y, z, direction, 2);
if (tileEntity != null) {
tileEntity.validate();
world.setTileEntity(x, y, z, tileEntity);
}
}
示例9: updateBlockState
import net.minecraft.world.World; //导入方法依赖的package包/类
public static void updateBlockState(boolean active, World world, int x, int y, int z) {
int direction = world.getBlockMetadata(x, y, z);
TileEntity tileEntity = world.getTileEntity(x, y, z);
isBurning = true;
if (active)
world.setBlock(x, y, z, TechnicalBlock.BlastFurnaceMediumActive);
else
world.setBlock(x, y, z, TechnicalBlock.BlastFurnaceMediumIdle);
isBurning = false;
world.setBlockMetadataWithNotify(x, y, z, direction, 2);
if (tileEntity != null) {
tileEntity.validate();
world.setTileEntity(x, y, z, tileEntity);
}
}
示例10: updateBlockState
import net.minecraft.world.World; //导入方法依赖的package包/类
public static void updateBlockState(boolean active, World world, int x, int y, int z) {
int direction = world.getBlockMetadata(x, y, z);
TileEntity tileEntity = world.getTileEntity(x, y, z);
isBurning = true;
if(active)
world.setBlock(x, y, z, TechnicalBlock.WasherActive);
else
world.setBlock(x, y, z, TechnicalBlock.WasherIdle);
isBurning = false;
world.setBlockMetadataWithNotify(x, y, z, direction, 2);
if(tileEntity != null) {
tileEntity.validate();
world.setTileEntity(x, y, z, tileEntity);
}
}
示例11: updateBlockState
import net.minecraft.world.World; //导入方法依赖的package包/类
public static void updateBlockState(boolean active, World world, int x, int y, int z) {
int direction = world.getBlockMetadata(x, y, z);
TileEntity tileEntity = world.getTileEntity(x, y, z);
isBurning = true;
if(active)
world.setBlock(x, y, z, TechnicalBlock.RepairingForgeAdvancedActive);
else
world.setBlock(x, y, z, TechnicalBlock.RepairingForgeAdvancedIdle);
isBurning = false;
world.setBlockMetadataWithNotify(x, y, z, direction, 2);
if(tileEntity != null) {
tileEntity.validate();
world.setTileEntity(x, y, z, tileEntity);
}
}
示例12: updateBlockState
import net.minecraft.world.World; //导入方法依赖的package包/类
public static void updateBlockState(boolean active, World world, int x, int y, int z) {
int direction = world.getBlockMetadata(x, y, z);
TileEntity tileEntity = world.getTileEntity(x, y, z);
isBurning = true;
if (active)
world.setBlock(x, y, z, TechnicalBlock.MinerActive);
else
world.setBlock(x, y, z, TechnicalBlock.MinerIdle);
isBurning = false;
world.setBlockMetadataWithNotify(x, y, z, direction, 2);
if (tileEntity != null) {
tileEntity.validate();
world.setTileEntity(x, y, z, tileEntity);
}
}
示例13: updateBlockState
import net.minecraft.world.World; //导入方法依赖的package包/类
public static void updateBlockState(boolean active, World world, int x, int y, int z) {
int direction = world.getBlockMetadata(x, y, z);
TileEntity tileEntity = world.getTileEntity(x, y, z);
isBurning = true;
if(active)
world.setBlock(x, y, z, TechnicalBlock.WasherMediumActive);
else
world.setBlock(x, y, z, TechnicalBlock.WasherMediumIdle);
isBurning = false;
world.setBlockMetadataWithNotify(x, y, z, direction, 2);
if(tileEntity != null) {
tileEntity.validate();
world.setTileEntity(x, y, z, tileEntity);
}
}
示例14: updateBlockState
import net.minecraft.world.World; //导入方法依赖的package包/类
public static void updateBlockState(boolean active, World world, int x, int y, int z) {
int direction = world.getBlockMetadata(x, y, z);
TileEntity tileEntity = world.getTileEntity(x, y, z);
isBurning = true;
if (active)
world.setBlock(x, y, z, TechnicalBlock.BlastFurnaceActive);
else
world.setBlock(x, y, z, TechnicalBlock.BlastFurnaceIdle);
isBurning = false;
world.setBlockMetadataWithNotify(x, y, z, direction, 2);
if (tileEntity != null) {
tileEntity.validate();
world.setTileEntity(x, y, z, tileEntity);
}
}
示例15: onBlockPlacedBy
import net.minecraft.world.World; //导入方法依赖的package包/类
public void onBlockPlacedBy(World world, int x, int y, int z, EntityLivingBase entity, ItemStack itemStack) {
int direction = MathHelper.floor_double((double) (entity.rotationYaw * 4.0F / 360.0F) + 0.5D) & 3;
if (direction == 0)
world.setBlockMetadataWithNotify(x, y, z, 2, 2);
if (direction == 1)
world.setBlockMetadataWithNotify(x, y, z, 5, 2);
if (direction == 2)
world.setBlockMetadataWithNotify(x, y, z, 3, 2);
if (direction == 3)
world.setBlockMetadataWithNotify(x, y, z, 4, 2);
if (itemStack.hasDisplayName()) {
((TileEntityMachine) world.getTileEntity(x, y, z)).setMachineName(itemStack.getDisplayName());
}
}