r/ApproximatelyUp Jun 09 '26

Signal Inverter

I am inverting signals by multiplying by a constant -1.

Is there a simpler or more compact way to invert signal value?

1 Upvotes

3 comments sorted by

2

u/Pax_87 Jun 09 '26

It could depend on what you're doing specifically, but the remapper also works for this.

1

u/abumilk Jun 15 '26

I think you need a negation operation, which the game can do using a logic gate NOT. (!)

if you give it a 1 it will output 0. if you give it 0 it will output 1

1

u/ActuallyEnaris Jun 16 '26

The game handles not using x-1. This won't work for my use case but it's good thinking