-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Hi! So the fabrication system has been significantly reworked. In the older versions, you were basically creating the circuit in the same way as you would in-world with real gate blocks and wires. The entire thing was actually simulated in real time, so ICs were just as performance hungry as building large circuits using full blocks. Now, it's a little different. The circuit gets analyzed and simplified into a logic-only representation with gets rid of wire-to-wire propagation delays, and some other stuff you get with in-world redstone. It is much more performant, but there's a few rules you need to follow now. In this case, the one you are breaking is the Multiple Drivers rule: A single input of any gate may only be controlled by a single output of another. You basically have 2 or more gates outputting to a single wire, and that wire is connected to some other gate's input (the ones highlighted in red). To get around this, you need to use something like an OR gate to "combine" the signals before feeding it into those highlighted gates. I know the dimensions are a bit small. Fabrication is not feature complete yet. Adjusting the design size and multiple layers is one of the next things I will work on as soon as I get time to do so. Also, I can't believe someone bothered to make a nice texture pack that works with Fabrication, considering the assets are a complete mess at the moment :) |
Beta Was this translation helpful? Give feedback.



Hi! So the fabrication system has been significantly reworked. In the older versions, you were basically creating the circuit in the same way as you would in-world with real gate blocks and wires. The entire thing was actually simulated in real time, so ICs were just as performance hungry as building large circuits using full blocks.
Now, it's a little different. The circuit gets analyzed and simplified into a logic-only representation with gets rid of wire-to-wire propagation delays, and some other stuff you get with in-world redstone. It is much more performant, but there's a few rules you need to follow now. In this case, the one you are breaking is the Multiple Drivers rule: A single …