use of org.terasology.engine.rendering.dag.dependencyConnections.RunOrderConnection in project Terasology by MovingBlocks.
the class AbstractNode method addInputRunOrderConnection.
public boolean addInputRunOrderConnection(RunOrderConnection from, int inputId) {
DependencyConnection runOrderconnection = new RunOrderConnection(RunOrderConnection.getConnectionName(inputId, this.nodeUri), DependencyConnection.Type.INPUT, this.getUri());
runOrderconnection.setConnectedConnection(from);
return addInputConnection(runOrderconnection);
}
Aggregations