Controlling portals: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
No edit summary
m (Nesciuse moved page Controlling portals/en to Controlling portals without leaving a redirect: Move en subpage to basepage)
 
(11 intermediate revisions by 9 users not shown)
Line 1: Line 1:
{{LanguageBar}}
{{Back|Portal Level Creation}}
Controlling portals is the basis for nearly any puzzle-based [[Portal]] map. If your player can create portals anywhere, most puzzles become trivial and not fun. The following suggestions aim at forcing players into using portals on specific areas and also how to help them control their portals.
Controlling portals is the basis for nearly any puzzle-based [[Portal]] map. If your player can create portals anywhere, most puzzles become trivial and not fun. The following suggestions aim at forcing players into using portals on specific areas and also how to help them control their portals.


Line 8: Line 11:


== {{ent |func_portal_bumper}} ==
== {{ent |func_portal_bumper}} ==
This brush [[entity]] is used on the edges between portal-enabled and portal-disabled textures. If the player shoots his/her portal not fully onto the portal-enabled surface, this entity will "bump" it so the portal is fully on the portal-enabled surface. To create one, create a brush just in front of the edge where the two surfaces meet, cover it with the texture ''tools/toolsinvisible'' and tie it to the entity.
This brush [[entity]] is used on the edges between portal-enabled and portal-disabled textures. If the player shoots their portal not fully onto the portal-enabled surface, this entity will "bump" it so the portal is fully on the portal-enabled surface. To create one, create a brush just in front of the edge where the two surfaces meet, cover it with the texture ''tools/toolsinvisible'' and tie it to the entity.


== {{ent |trigger_portal_cleanser}} ==
== {{ent |trigger_portal_cleanser}} ==
When a player passes through this trigger, all of the current portals on the map will vanish. It can also be set to dissolve any physics objects (like cubes, spheres or cameras). To create one, make a brush across the area where you want it to trigger, apply the ''tools/toolstrigger'' texture to it and tie it to the entity. This is mostly used in [[Creating a portal/object fizzler|creating a fizzler]].
When a player passes through this trigger, their portals will be erased. It can also be set to dissolve any physics objects (like cubes, spheres or cameras). To create one, make a brush across the area where you want it to trigger, apply the ''tools/toolstrigger'' texture to it and tie it to the entity. This is mainly used when [[creating a portal/object fizzler]].


== {{ent |func_portal_orientation}} ==
== {{ent |func_portal_orientation}} ==
Line 19: Line 22:
* [[Portal Level Creation]]
* [[Portal Level Creation]]


[[Category:Level Design Tutorials]]
[[Category:Entities by topic]]
 
[[Category:Level Design]]
[[Category:Tutorials]]
 
[[Category:Portal]]
[[Category:Portal]]
{{otherlang:en}}
{{otherlang:en:ru|Контроль над порталами}}

Latest revision as of 05:43, 12 July 2024

English (en)Français (fr)Русский (ru)中文 (zh)Translate (Translate)
Portal Level Creation

Controlling portals is the basis for nearly any puzzle-based Portal map. If your player can create portals anywhere, most puzzles become trivial and not fun. The following suggestions aim at forcing players into using portals on specific areas and also how to help them control their portals.

Textures

Portals cannot be made on textures which have "%noportal" 1 in their .vmt file. For the default Portal texture set, most textures that are concrete are portal-enabled while metal ones are not. This is the main way to prevent players from putting a portal on a wall.

func_noportal_volume

This brush entity stops any portals from being made within it. To create one, just cover an area you wish to disallow portals (like the ceiling and floors of an elevator room) in a brush textured with tools/toolsinvisible and tie it to the entity.

func_portal_bumper

This brush entity is used on the edges between portal-enabled and portal-disabled textures. If the player shoots their portal not fully onto the portal-enabled surface, this entity will "bump" it so the portal is fully on the portal-enabled surface. To create one, create a brush just in front of the edge where the two surfaces meet, cover it with the texture tools/toolsinvisible and tie it to the entity.

trigger_portal_cleanser

When a player passes through this trigger, their portals will be erased. It can also be set to dissolve any physics objects (like cubes, spheres or cameras). To create one, make a brush across the area where you want it to trigger, apply the tools/toolstrigger texture to it and tie it to the entity. This is mainly used when creating a portal/object fizzler.

func_portal_orientation

This brush entity rotates portals based in it's volume so they are always facing a certain direction. To create one, make a brush textured with tools/toolsinvisible and tie it to the entity. Then set the AnglesToFace value to whichever direction you want the bottom of the portal facing.

See also