Examples of scheduleRenderUpdate()


Examples of buildcraft.transport.TileGenericPipe.scheduleRenderUpdate()

      TileGenericPipe pipeReal = (TileGenericPipe) pipe;
      if (!pipeReal.getWorld().isRemote) {
        Gate gate = pipeReal.pipe.gates[direction.ordinal()];
        if (gate == null || gate.material != material || gate.logic != logic) {
          pipeReal.pipe.gates[direction.ordinal()] = GateFactory.makeGate(pipeReal.pipe, material, logic, direction);
          pipeReal.scheduleRenderUpdate();
        }
      }
    }

    @Override
View Full Code Here

Examples of buildcraft.transport.TileGenericPipe.scheduleRenderUpdate()

        Gate gate = pipeReal.pipe.gates[direction.ordinal()];
        if (gate != null) {
          gate.resetGate();
          pipeReal.pipe.gates[direction.ordinal()] = null;
        }
        pipeReal.scheduleRenderUpdate();
      }
    }

    @Override
    public boolean blocking(IPipeTile pipe, ForgeDirection direction) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.