use of com.bluepowermod.part.gate.component.GateComponentBorderDark in project BluePower by Qmunity.
the class GateRegulableTorch method initComponents.
@Override
protected void initComponents() {
addComponent((torch = new GateComponentPointer(this, 0xffff00, 7 / 16D, false).setAngle(1 / 8D)).setState(true));
addComponent(new GateComponentWire(this, 0x3E94DC, RedwireType.RED_ALLOY).bind(front()));
addComponent(new GateComponentBorder(this, 0x7D7D7D));
addComponent(new GateComponentBorderDark(this, 0x555555));
}
use of com.bluepowermod.part.gate.component.GateComponentBorderDark in project BluePower by Qmunity.
the class GateCounter method initComponents.
@Override
public void initComponents() {
addComponent(t1 = new GateComponentTorch(this, 0x0000FF, 4 / 16D, true).setState(false));
addComponent(t2 = new GateComponentTorch(this, 0x00c0ff, 4 / 16D, true).setState(true));
addComponent((p = new GateComponentPointer(this, 0xb220d1, 7 / 16D, true).setAngle(-0.5 - 0.1075)).setState(true));
addComponent(new GateComponentWire(this, 0xFFF600, RedwireType.BLUESTONE).bind(right()));
addComponent(new GateComponentWire(this, 0xFF0000, RedwireType.BLUESTONE).bind(left()));
addComponent(new GateComponentBorder(this, 0x7D7D7D));
addComponent(new GateComponentBorderDark(this, 0x4d4d4d));
}
Aggregations