Examples of broadcastSignal()


Examples of buildcraft.transport.Gate.broadcastSignal()

  @Override
  public void actionActivate(IStatementContainer container, IStatementParameter[] parameters) {
    Gate gate = (Gate) container;

    gate.broadcastSignal(color);

    for (IStatementParameter param : parameters) {
      if (param != null) {
        ActionParameterSignal signal = (ActionParameterSignal) param;
View Full Code Here

Examples of buildcraft.transport.Gate.broadcastSignal()

    for (IStatementParameter param : parameters) {
      if (param != null) {
        ActionParameterSignal signal = (ActionParameterSignal) param;

        if (signal.color != null) {
          gate.broadcastSignal(signal.color);
        }
      }
    }
  }
 
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.