123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- .. Generated automatically by doc/tools/makerst.py in Godot's source tree.
- .. DO NOT EDIT THIS FILE, but the doc/base/classes.xml source instead.
- .. _class_Portal:
- Portal
- ======
- **Inherits:** :ref:`VisualInstance<class_visualinstance>` **<** :ref:`Spatial<class_spatial>` **<** :ref:`Node<class_node>` **<** :ref:`Object<class_object>`
- **Category:** Core
- Brief Description
- -----------------
- Portals provide virtual openings to rooms.
- Member Functions
- ----------------
- +------------------------------------------+-----------------------------------------------------------------------------------------------------------------+
- | :ref:`float<class_float>` | :ref:`get_connect_range<class_Portal_get_connect_range>` **(** **)** const |
- +------------------------------------------+-----------------------------------------------------------------------------------------------------------------+
- | :ref:`float<class_float>` | :ref:`get_disable_distance<class_Portal_get_disable_distance>` **(** **)** const |
- +------------------------------------------+-----------------------------------------------------------------------------------------------------------------+
- | :ref:`Color<class_color>` | :ref:`get_disabled_color<class_Portal_get_disabled_color>` **(** **)** const |
- +------------------------------------------+-----------------------------------------------------------------------------------------------------------------+
- | :ref:`Vector2Array<class_vector2array>` | :ref:`get_shape<class_Portal_get_shape>` **(** **)** const |
- +------------------------------------------+-----------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`is_enabled<class_Portal_is_enabled>` **(** **)** const |
- +------------------------------------------+-----------------------------------------------------------------------------------------------------------------+
- | void | :ref:`set_connect_range<class_Portal_set_connect_range>` **(** :ref:`float<class_float>` range **)** |
- +------------------------------------------+-----------------------------------------------------------------------------------------------------------------+
- | void | :ref:`set_disable_distance<class_Portal_set_disable_distance>` **(** :ref:`float<class_float>` distance **)** |
- +------------------------------------------+-----------------------------------------------------------------------------------------------------------------+
- | void | :ref:`set_disabled_color<class_Portal_set_disabled_color>` **(** :ref:`Color<class_color>` color **)** |
- +------------------------------------------+-----------------------------------------------------------------------------------------------------------------+
- | void | :ref:`set_enabled<class_Portal_set_enabled>` **(** :ref:`bool<class_bool>` enable **)** |
- +------------------------------------------+-----------------------------------------------------------------------------------------------------------------+
- | void | :ref:`set_shape<class_Portal_set_shape>` **(** :ref:`Vector2Array<class_vector2array>` points **)** |
- +------------------------------------------+-----------------------------------------------------------------------------------------------------------------+
- Description
- -----------
- Portals provide virtual openings to :ref:`VisualInstance<class_visualinstance>` nodes, so cameras can look at them from the outside. Note that portals are a visibility optimization technique, and are in no way related to the game of the same name (as in, they are not used for teleportation). For more information on how rooms and portals work, see :ref:`VisualInstance<class_visualinstance>`. Portals are represented as 2D convex polygon shapes (in the X,Y local plane), and are placed on the surface of the areas occupied by a :ref:`VisualInstance<class_visualinstance>`, to indicate that the room can be accessed or looked-at through them. If two rooms are next to each other, and two similar portals in each of them share the same world position (and are parallel and opposed to each other), they will automatically "connect" and form "doors" (for example, the portals that connect a kitchen to a living room are placed in the door they share). Portals must always have a :ref:`VisualInstance<class_visualinstance>` node as a parent, grandparent or far parent, or else they will not be active.
- Member Function Description
- ---------------------------
- .. _class_Portal_get_connect_range:
- - :ref:`float<class_float>` **get_connect_range** **(** **)** const
- Return the range for auto-connecting two portals from different rooms sharing the same space.
- .. _class_Portal_get_disable_distance:
- - :ref:`float<class_float>` **get_disable_distance** **(** **)** const
- Return the distance threshold for disabling the portal. Every time that the portal goes beyond "distance", it disables itself, becoming the opaque color (see :ref:`set_disabled_color<class_Portal_set_disabled_color>`).
- .. _class_Portal_get_disabled_color:
- - :ref:`Color<class_color>` **get_disabled_color** **(** **)** const
- Return the color for when the portal goes beyond the disable distance (see :ref:`set_disable_distance<class_Portal_set_disable_distance>`) and becomes disabled.
- .. _class_Portal_get_shape:
- - :ref:`Vector2Array<class_vector2array>` **get_shape** **(** **)** const
- Return the portal shape. The shape is an array of :ref:`Vector2<class_vector2>` points, representing a convex polygon in the X,Y plane.
- .. _class_Portal_is_enabled:
- - :ref:`bool<class_bool>` **is_enabled** **(** **)** const
- Return whether the portal is active. When disabled it causes the parent :ref:`VisualInstance<class_visualinstance>` to not be visible any longer when looking through the portal.
- .. _class_Portal_set_connect_range:
- - void **set_connect_range** **(** :ref:`float<class_float>` range **)**
- Set the range for auto-connecting two portals from different rooms sharing the same space.
- .. _class_Portal_set_disable_distance:
- - void **set_disable_distance** **(** :ref:`float<class_float>` distance **)**
- Set the distance threshold for disabling the portal. Every time that the portal goes beyond "distance", it disables itself, becoming the opaque color (see :ref:`set_disabled_color<class_Portal_set_disabled_color>`).
- .. _class_Portal_set_disabled_color:
- - void **set_disabled_color** **(** :ref:`Color<class_color>` color **)**
- When the portal goes beyond the disable distance (see :ref:`set_disable_distance<class_Portal_set_disable_distance>`), it becomes opaque and displayed with color "color".
- .. _class_Portal_set_enabled:
- - void **set_enabled** **(** :ref:`bool<class_bool>` enable **)**
- Enable the portal (it is enabled by default though), disabling it will cause the parent :ref:`VisualInstance<class_visualinstance>` to not be visible any longer when looking through the portal.
- .. _class_Portal_set_shape:
- - void **set_shape** **(** :ref:`Vector2Array<class_vector2array>` points **)**
- Set the portal shape. The shape is an array of :ref:`Vector2<class_vector2>` points, representing a convex polygon in the X,Y plane.
|