How do I create a shift type button for my own game.
I want R2 to remap the rest of the buttons for new functionality while being held down.
-
Hi,
There a few ways to do this.
Try putting all the logic you want to happen when pressing shift onto a microchip, and put the shift button into the power of the microchip, so it's only on when pressing shift.
At the same time make all the other logic on another microchip and also wire your shift button into it after first going through a not gate, so it's on when 'not' holding the shift button
John -
You could wire a transmitter (give it a name) to the R2 button.
For functions that don't need R2, use a XOR gate so that those features work as long as R2 is not pressed as well.
For functions using R2, use an AND gate so R2 and the another button must be pressed to make the function work.
Please sign in to leave a comment.