Allow connecting from both directions, use textured logic gates instead of UI to get a huge speedup, make output single output(should have been), add connection removal with right click

This commit is contained in:
csd4ni3l
2025-10-16 21:39:10 +02:00
parent ab9035e76d
commit 318d5b2823
10 changed files with 134 additions and 47 deletions

View File

@@ -7,7 +7,7 @@ menu_background_color = (30, 30, 47)
log_dir = 'logs'
discord_presence_id = 1427213145667276840
SINGLE_INPUT_LOGICAL_GATES = ["NOT"]
SINGLE_INPUT_LOGICAL_GATES = ["NOT", "OUTPUT"]
LOGICAL_GATES = {
"AND": lambda a, b: a and b,
@@ -148,7 +148,7 @@ LEVELS = [
[1, "NOR"],
[1, "AND"],
[1, "XOR"],
[1, "OUTPUT", 1]
[1, "OUTPUT", 0]
],
[
[1, "INPUT", 1],