How to make a one way door?

Simulacron

L-3: Simulated Member
aa
Feb 17, 2016
313
326
How can I make a one way door? When I put the trigger exactly where the door end I can still walk against the door to open it, but if I move it into the door by 1hu, you can get stuck in it.
Thanks for your help!
 
Last edited:

fubarFX

The "raw" in "nodraw"
aa
Jun 1, 2009
1,720
1,978
first problem: you have "ignore groups" active, ignore groups also ignores the entity part of brush entities. don't use ignore groups when you copy stuff

second problem: yeah welcome to source. I'm not sure what the definitive answer for that is but you can always make the door blockable by players so they don't get squashed or stuck
 

Simulacron

L-3: Simulated Member
aa
Feb 17, 2016
313
326
first problem: you have "ignore groups" active, ignore groups also ignores the entity part of brush entities. don't use ignore groups when you copy stuff

second problem: yeah welcome to source. I'm not sure what the definitive answer for that is but you can always make the door blockable by players so they don't get squashed or stuck
Thanks for the help, I noticed the first problem myself, so I already removed it from the thread.
 

theatreTECHIE

Yet another Techie for the net...
aa
Jun 19, 2015
446
457
You can make it by having two triggers, one which sends the output onstarttouchall open, and the other sending onendtouchall close. The open trigger you make what size you want, but don't allow it to extend into the door.

The close trigger you make sure completely matches the open door trigger, but you also extend it through the door to just past the door so people won't get stuck in the door.

Illustration:
IMG_0595.PNG
 

Simulacron

L-3: Simulated Member
aa
Feb 17, 2016
313
326
You can make it by having two triggers, one which sends the output onstarttouchall open, and the other sending onendtouchall close. The open trigger you make what size you want, but don't allow it to extend into the door.

The close trigger you make sure completely matches the open door trigger, but you also extend it through the door to just past the door so people won't get stuck in the door.

Illustration:
IMG_0595.PNG
This is one of these technics you need to be taught to use them. I would never have come up with such an idea