123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- .. Generated automatically by doc/tools/makerst.py in Godot's source tree.
- .. DO NOT EDIT THIS FILE, but the ARVRScriptInterface.xml source instead.
- .. The source is found in doc/classes or modules/<name>/doc_classes.
- .. _class_ARVRScriptInterface:
- ARVRScriptInterface
- ===================
- **Inherits:** :ref:`ARVRInterface<class_arvrinterface>` **<** :ref:`Reference<class_reference>` **<** :ref:`Object<class_object>`
- **Category:** Core
- Brief Description
- -----------------
- Base class for GDNative based ARVR interfaces.
- Member Functions
- ----------------
- +------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`_get_projection_for_eye<class_ARVRScriptInterface__get_projection_for_eye>` **(** **)** virtual |
- +------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`commit_for_eye<class_ARVRScriptInterface_commit_for_eye>` **(** :ref:`int<class_int>` eye, :ref:`RID<class_rid>` render_target **)** virtual |
- +------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`get_anchor_detection_is_enabled<class_ARVRScriptInterface_get_anchor_detection_is_enabled>` **(** **)** virtual |
- +------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`int<class_int>` | :ref:`get_capabilities<class_ARVRScriptInterface_get_capabilities>` **(** **)** virtual |
- +------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`Vector2<class_vector2>` | :ref:`get_recommended_render_targetsize<class_ARVRScriptInterface_get_recommended_render_targetsize>` **(** **)** virtual |
- +------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`int<class_int>` | :ref:`get_tracking_status<class_ARVRScriptInterface_get_tracking_status>` **(** **)** virtual |
- +------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`Transform<class_transform>` | :ref:`get_transform_for_eye<class_ARVRScriptInterface_get_transform_for_eye>` **(** :ref:`int<class_int>` eye, :ref:`Transform<class_transform>` cam_transform **)** virtual |
- +------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`initialize<class_ARVRScriptInterface_initialize>` **(** **)** virtual |
- +------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`is_initialized<class_ARVRScriptInterface_is_initialized>` **(** **)** virtual |
- +------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`is_stereo<class_ARVRScriptInterface_is_stereo>` **(** **)** virtual |
- +------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`process<class_ARVRScriptInterface_process>` **(** **)** virtual |
- +------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`set_anchor_detection_is_enabled<class_ARVRScriptInterface_set_anchor_detection_is_enabled>` **(** :ref:`bool<class_bool>` enabled **)** virtual |
- +------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | void | :ref:`uninitialize<class_ARVRScriptInterface_uninitialize>` **(** **)** virtual |
- +------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- Description
- -----------
- This class is used as a base class/interface class for implementing GDNative based ARVR interfaces and as a result exposes more of the internals of the ARVR server.
- Member Function Description
- ---------------------------
- .. _class_ARVRScriptInterface__get_projection_for_eye:
- - void **_get_projection_for_eye** **(** **)** virtual
- Should return the projection 4x4 matrix for the requested eye.
- .. _class_ARVRScriptInterface_commit_for_eye:
- - void **commit_for_eye** **(** :ref:`int<class_int>` eye, :ref:`RID<class_rid>` render_target **)** virtual
- Outputs a finished render buffer to the AR/VR device for the given eye.
- .. _class_ARVRScriptInterface_get_anchor_detection_is_enabled:
- - :ref:`bool<class_bool>` **get_anchor_detection_is_enabled** **(** **)** virtual
- Returns true if achor detection is enabled (AR only).
- .. _class_ARVRScriptInterface_get_capabilities:
- - :ref:`int<class_int>` **get_capabilities** **(** **)** virtual
- Returns a combination of flags providing information about the capabilities of this interface.
- .. _class_ARVRScriptInterface_get_recommended_render_targetsize:
- - :ref:`Vector2<class_vector2>` **get_recommended_render_targetsize** **(** **)** virtual
- Returns the size at which we should render our scene to get optimal quality on the output device.
- .. _class_ARVRScriptInterface_get_tracking_status:
- - :ref:`int<class_int>` **get_tracking_status** **(** **)** virtual
- If supported, returns the status of our tracking. This will allow you to provide feedback to the user whether there are issues with positional tracking.
- .. _class_ARVRScriptInterface_get_transform_for_eye:
- - :ref:`Transform<class_transform>` **get_transform_for_eye** **(** :ref:`int<class_int>` eye, :ref:`Transform<class_transform>` cam_transform **)** virtual
- Get the location and orientation transform used when rendering a specific eye.
- .. _class_ARVRScriptInterface_initialize:
- - :ref:`bool<class_bool>` **initialize** **(** **)** virtual
- Initialize this interface.
- .. _class_ARVRScriptInterface_is_initialized:
- - :ref:`bool<class_bool>` **is_initialized** **(** **)** virtual
- Returns true if this interface has been initialized and is active.
- .. _class_ARVRScriptInterface_is_stereo:
- - :ref:`bool<class_bool>` **is_stereo** **(** **)** virtual
- Returns true if we require stereoscopic rendering for this interface.
- .. _class_ARVRScriptInterface_process:
- - void **process** **(** **)** virtual
- Gets called before rendering each frame so tracking data gets updated in time.
- .. _class_ARVRScriptInterface_set_anchor_detection_is_enabled:
- - void **set_anchor_detection_is_enabled** **(** :ref:`bool<class_bool>` enabled **)** virtual
- Enables anchor detection, this is used on AR interfaces and enables the extra logic that will detect planes, features, objects, etc. and adds/modifies anchor points.
- .. _class_ARVRScriptInterface_uninitialize:
- - void **uninitialize** **(** **)** virtual
- Turn this interface off.
|