- Home /
Does Unity Do "Portals"? (Not the Valve Game)
Bear with me because I'm a Unity n00b and my knowledge of 3D engines is more than ten years old. :)
Back in the Quake days there was talk of 3D engines using "portals" to separate two volumes in the game space. Basically, the engine would render everything in the same volume as the player and ignore everything outside that volume. It was an optimization trick and usually was used to separate the interior of a building from an "outdoors" terrain. When the player was in the terrain area the interior of the building wouldn't be rendered. When they entered the building the outdoors area wouldn't be rendered.
Does Unity do something like this? I've read about occlusion culling and it sounds like it may be an up to date way of achieving the same thing.
Thanks for the help!
Answer by Eric5h5 · Feb 19, 2011 at 06:14 AM
Occlusion culling is a more flexible way of doing that, yes. Also you can use layers and if you really wanted to, you can make your own portal system.
Your answer
Follow this Question
Related Questions
Unity equivalent of ARB_occlusion_query (glGetQueryObject)? 0 Answers
Should Sound Objects Be Included in Culling? 0 Answers
Occlusion culling in levels generated at runtime 2 Answers
Occlusion Culling (Doors/Portals?) 0 Answers
Dynamic Occlusion Culling 1 Answer