sequence

n30n

L4: Comfortable Member
Jul 13, 2009
154
14
So, basically I have few func_brushes and trigger_multiple. I want to disable and enable them in a sequence. Ive set up that like a door pretty much, starttouchall disable endtouchall enable with slight delay for each brush. My problem is when i get in and out of trigger, it gets stuck out of order with half enabled half disabled. Is there some clever way to fix this issue? I hope its readable :p
 

Agentkid

L1: Registered
Feb 27, 2009
45
15
it is just a door or many doors I'm sorry to say im lost
 

A Boojum Snark

Toraipoddodezain Mazahabado
aa
Nov 2, 2007
4,775
7,670
You'll need two logic_relay, one for Start and one for End, copy all the corresponding outputs to these relays and then delete them from the trigger.

Give the trigger four outputs:
OnStartTouchAll > startrelay > trigger > 0.1 delay
OnStartTouchAll > endrelay > cancelpending > no delay
OnEndTouchAll > endrelay > trigger > 0.1 delay
OnEndTouchAll > startrelay > cancelpending > no delay

This way when the trigger status changes it will cancel all the enable/disable outputs currently queued and then begin firing the opposite sequence.