Please or Register to create posts and topics.

toxic slime not rendering properly?

PreviousPage 2 of 2

Thanks. I just added more to that map (a moving panel leading to a troll :D ). I have a light bridge and want it to only activate by pressing one button after the other, but can;t figure that out. Oh well. I'll get there. The light bridge is for getting across the slime. :D

"Could a moron PUNCH YOU INTO THIS PIT?!?! HUH? COULD A MORON DO THAT!?!?" "Yes, Wheatley. Yes, a moron could do that..."
ezio160324 wrote:
Thanks. I just added more to that map (a moving panel leading to a troll :D ). I have a light bridge and want it to only activate by pressing one button after the other, but can;t figure that out. Oh well. I'll get there. The light bridge is for getting across the slime. :D

I take it you want a light bridge to activate when two buttons are being pressed? You could use a math_counter, but because you have only two buttons, use a logic_coop_manager with the outputs:

OnChangeToAllTrue
[light bridge]
Enable

OnChangeToAnyFalse
[light bridge]
Disable

And for the two buttons

Button 1 outputs

OnPressed
[coop manager]
SetStateATrue

OnUnpressed
[coop manager]
SetStateAFalse

For button 2, the same outputs except use state b.

Dr.Toaster Waffles wrote:
ezio160324 wrote:
Thanks. I just added more to that map (a moving panel leading to a troll :D ). I have a light bridge and want it to only activate by pressing one button after the other, but can;t figure that out. Oh well. I'll get there. The light bridge is for getting across the slime. :D

I take it you want a light bridge to activate when two buttons are being pressed? You could use a math_counter, but because you have only two buttons, use a logic_coop_manager with the outputs:

OnChangeToAllTrue
[light bridge]
Enable

OnChangeToAnyFalse
[light bridge]
Disable

And for the two buttons

Button 1 outputs

OnPressed
[coop manager]
SetStateATrue

OnUnpressed
[coop manager]
SetStateAFalse

For button 2, the same outputs except use state b.

Yes!! What I was looking for!!

"Could a moron PUNCH YOU INTO THIS PIT?!?! HUH? COULD A MORON DO THAT!?!?" "Yes, Wheatley. Yes, a moron could do that..."
PreviousPage 2 of 2