Package org.bukkit.material

Examples of org.bukkit.material.Step


            case QUARTZ_STAIRS:
            case COBBLESTONE_STAIRS:
                return new Stairs(id.getType(), id.getData()).isInverted();
            case STEP:
            case WOOD_STEP:
                return new Step(id.getType(), id.getData()).isInverted();
            case ACTIVATOR_RAIL:
            case CAKE_BLOCK:
            case DAYLIGHT_DETECTOR:
            case DIODE_BLOCK_OFF:
            case DIODE_BLOCK_ON:
View Full Code Here


        setBlock(getActualBlock(x, y, z), Material.VINE, data);
    }
  }
 
  public final void setSlabs(int x1, int x2, int y1, int y2, int z1, int z2, Material material, boolean inverted) {
    Step data = new Step(material);
    data.setInverted(inverted);
    setBlocks(x1, x2, y1, y2, z1, z2, Material.STEP, data);
  }
View Full Code Here

TOP

Related Classes of org.bukkit.material.Step

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.