class_xrinterface.rst 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599
  1. :github_url: hide
  2. .. DO NOT EDIT THIS FILE!!!
  3. .. Generated automatically from Godot engine sources.
  4. .. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/XRInterface.xml.
  6. .. _class_XRInterface:
  7. XRInterface
  8. ===========
  9. **Inherits:** :ref:`RefCounted<class_RefCounted>` **<** :ref:`Object<class_Object>`
  10. **Inherited By:** :ref:`MobileVRInterface<class_MobileVRInterface>`, :ref:`OpenXRInterface<class_OpenXRInterface>`, :ref:`WebXRInterface<class_WebXRInterface>`, :ref:`XRInterfaceExtension<class_XRInterfaceExtension>`
  11. Base class for an XR interface implementation.
  12. .. rst-class:: classref-introduction-group
  13. Description
  14. -----------
  15. This class needs to be implemented to make an AR or VR platform available to Godot and these should be implemented as C++ modules or GDExtension modules. Part of the interface is exposed to GDScript so you can detect, enable and configure an AR or VR platform.
  16. Interfaces should be written in such a way that simply enabling them will give us a working setup. You can query the available interfaces through :ref:`XRServer<class_XRServer>`.
  17. .. rst-class:: classref-introduction-group
  18. Tutorials
  19. ---------
  20. - :doc:`XR documentation index <../tutorials/xr/index>`
  21. .. rst-class:: classref-reftable-group
  22. Properties
  23. ----------
  24. .. table::
  25. :widths: auto
  26. +----------------------------------------------------+--------------------------------------------------------------------------------------------------+-----------+
  27. | :ref:`bool<class_bool>` | :ref:`ar_is_anchor_detection_enabled<class_XRInterface_property_ar_is_anchor_detection_enabled>` | ``false`` |
  28. +----------------------------------------------------+--------------------------------------------------------------------------------------------------+-----------+
  29. | :ref:`bool<class_bool>` | :ref:`interface_is_primary<class_XRInterface_property_interface_is_primary>` | ``false`` |
  30. +----------------------------------------------------+--------------------------------------------------------------------------------------------------+-----------+
  31. | :ref:`PlayAreaMode<enum_XRInterface_PlayAreaMode>` | :ref:`xr_play_area_mode<class_XRInterface_property_xr_play_area_mode>` | ``0`` |
  32. +----------------------------------------------------+--------------------------------------------------------------------------------------------------+-----------+
  33. .. rst-class:: classref-reftable-group
  34. Methods
  35. -------
  36. .. table::
  37. :widths: auto
  38. +--------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  39. | :ref:`int<class_int>` | :ref:`get_camera_feed_id<class_XRInterface_method_get_camera_feed_id>` **(** **)** |
  40. +--------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  41. | :ref:`int<class_int>` | :ref:`get_capabilities<class_XRInterface_method_get_capabilities>` **(** **)** |const| |
  42. +--------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  43. | :ref:`StringName<class_StringName>` | :ref:`get_name<class_XRInterface_method_get_name>` **(** **)** |const| |
  44. +--------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  45. | :ref:`PackedVector3Array<class_PackedVector3Array>` | :ref:`get_play_area<class_XRInterface_method_get_play_area>` **(** **)** |const| |
  46. +--------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  47. | :ref:`Projection<class_Projection>` | :ref:`get_projection_for_view<class_XRInterface_method_get_projection_for_view>` **(** :ref:`int<class_int>` view, :ref:`float<class_float>` aspect, :ref:`float<class_float>` near, :ref:`float<class_float>` far **)** |
  48. +--------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  49. | :ref:`Vector2<class_Vector2>` | :ref:`get_render_target_size<class_XRInterface_method_get_render_target_size>` **(** **)** |
  50. +--------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  51. | :ref:`TrackingStatus<enum_XRInterface_TrackingStatus>` | :ref:`get_tracking_status<class_XRInterface_method_get_tracking_status>` **(** **)** |const| |
  52. +--------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  53. | :ref:`Transform3D<class_Transform3D>` | :ref:`get_transform_for_view<class_XRInterface_method_get_transform_for_view>` **(** :ref:`int<class_int>` view, :ref:`Transform3D<class_Transform3D>` cam_transform **)** |
  54. +--------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  55. | :ref:`int<class_int>` | :ref:`get_view_count<class_XRInterface_method_get_view_count>` **(** **)** |
  56. +--------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  57. | :ref:`bool<class_bool>` | :ref:`initialize<class_XRInterface_method_initialize>` **(** **)** |
  58. +--------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  59. | :ref:`bool<class_bool>` | :ref:`is_initialized<class_XRInterface_method_is_initialized>` **(** **)** |const| |
  60. +--------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  61. | :ref:`bool<class_bool>` | :ref:`is_passthrough_enabled<class_XRInterface_method_is_passthrough_enabled>` **(** **)** |
  62. +--------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  63. | :ref:`bool<class_bool>` | :ref:`is_passthrough_supported<class_XRInterface_method_is_passthrough_supported>` **(** **)** |
  64. +--------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  65. | :ref:`bool<class_bool>` | :ref:`set_play_area_mode<class_XRInterface_method_set_play_area_mode>` **(** :ref:`PlayAreaMode<enum_XRInterface_PlayAreaMode>` mode **)** |
  66. +--------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  67. | :ref:`bool<class_bool>` | :ref:`start_passthrough<class_XRInterface_method_start_passthrough>` **(** **)** |
  68. +--------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  69. | void | :ref:`stop_passthrough<class_XRInterface_method_stop_passthrough>` **(** **)** |
  70. +--------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  71. | :ref:`bool<class_bool>` | :ref:`supports_play_area_mode<class_XRInterface_method_supports_play_area_mode>` **(** :ref:`PlayAreaMode<enum_XRInterface_PlayAreaMode>` mode **)** |
  72. +--------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  73. | void | :ref:`trigger_haptic_pulse<class_XRInterface_method_trigger_haptic_pulse>` **(** :ref:`String<class_String>` action_name, :ref:`StringName<class_StringName>` tracker_name, :ref:`float<class_float>` frequency, :ref:`float<class_float>` amplitude, :ref:`float<class_float>` duration_sec, :ref:`float<class_float>` delay_sec **)** |
  74. +--------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  75. | void | :ref:`uninitialize<class_XRInterface_method_uninitialize>` **(** **)** |
  76. +--------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  77. .. rst-class:: classref-section-separator
  78. ----
  79. .. rst-class:: classref-descriptions-group
  80. Signals
  81. -------
  82. .. _class_XRInterface_signal_play_area_changed:
  83. .. rst-class:: classref-signal
  84. **play_area_changed** **(** :ref:`int<class_int>` mode **)**
  85. Emitted when the play area is changed. This can be a result of the player resetting the boundary or entering a new play area, the player changing the play area mode, the world scale changing or the player resetting their headset orientation.
  86. .. rst-class:: classref-section-separator
  87. ----
  88. .. rst-class:: classref-descriptions-group
  89. Enumerations
  90. ------------
  91. .. _enum_XRInterface_Capabilities:
  92. .. rst-class:: classref-enumeration
  93. enum **Capabilities**:
  94. .. _class_XRInterface_constant_XR_NONE:
  95. .. rst-class:: classref-enumeration-constant
  96. :ref:`Capabilities<enum_XRInterface_Capabilities>` **XR_NONE** = ``0``
  97. No XR capabilities.
  98. .. _class_XRInterface_constant_XR_MONO:
  99. .. rst-class:: classref-enumeration-constant
  100. :ref:`Capabilities<enum_XRInterface_Capabilities>` **XR_MONO** = ``1``
  101. This interface can work with normal rendering output (non-HMD based AR).
  102. .. _class_XRInterface_constant_XR_STEREO:
  103. .. rst-class:: classref-enumeration-constant
  104. :ref:`Capabilities<enum_XRInterface_Capabilities>` **XR_STEREO** = ``2``
  105. This interface supports stereoscopic rendering.
  106. .. _class_XRInterface_constant_XR_QUAD:
  107. .. rst-class:: classref-enumeration-constant
  108. :ref:`Capabilities<enum_XRInterface_Capabilities>` **XR_QUAD** = ``4``
  109. This interface supports quad rendering (not yet supported by Godot).
  110. .. _class_XRInterface_constant_XR_VR:
  111. .. rst-class:: classref-enumeration-constant
  112. :ref:`Capabilities<enum_XRInterface_Capabilities>` **XR_VR** = ``8``
  113. this interface supports VR.
  114. .. _class_XRInterface_constant_XR_AR:
  115. .. rst-class:: classref-enumeration-constant
  116. :ref:`Capabilities<enum_XRInterface_Capabilities>` **XR_AR** = ``16``
  117. This interface supports AR (video background and real world tracking).
  118. .. _class_XRInterface_constant_XR_EXTERNAL:
  119. .. rst-class:: classref-enumeration-constant
  120. :ref:`Capabilities<enum_XRInterface_Capabilities>` **XR_EXTERNAL** = ``32``
  121. This interface outputs to an external device. If the main viewport is used, the on screen output is an unmodified buffer of either the left or right eye (stretched if the viewport size is not changed to the same aspect ratio of :ref:`get_render_target_size<class_XRInterface_method_get_render_target_size>`). Using a separate viewport node frees up the main viewport for other purposes.
  122. .. rst-class:: classref-item-separator
  123. ----
  124. .. _enum_XRInterface_TrackingStatus:
  125. .. rst-class:: classref-enumeration
  126. enum **TrackingStatus**:
  127. .. _class_XRInterface_constant_XR_NORMAL_TRACKING:
  128. .. rst-class:: classref-enumeration-constant
  129. :ref:`TrackingStatus<enum_XRInterface_TrackingStatus>` **XR_NORMAL_TRACKING** = ``0``
  130. Tracking is behaving as expected.
  131. .. _class_XRInterface_constant_XR_EXCESSIVE_MOTION:
  132. .. rst-class:: classref-enumeration-constant
  133. :ref:`TrackingStatus<enum_XRInterface_TrackingStatus>` **XR_EXCESSIVE_MOTION** = ``1``
  134. Tracking is hindered by excessive motion (the player is moving faster than tracking can keep up).
  135. .. _class_XRInterface_constant_XR_INSUFFICIENT_FEATURES:
  136. .. rst-class:: classref-enumeration-constant
  137. :ref:`TrackingStatus<enum_XRInterface_TrackingStatus>` **XR_INSUFFICIENT_FEATURES** = ``2``
  138. Tracking is hindered by insufficient features, it's too dark (for camera-based tracking), player is blocked, etc.
  139. .. _class_XRInterface_constant_XR_UNKNOWN_TRACKING:
  140. .. rst-class:: classref-enumeration-constant
  141. :ref:`TrackingStatus<enum_XRInterface_TrackingStatus>` **XR_UNKNOWN_TRACKING** = ``3``
  142. We don't know the status of the tracking or this interface does not provide feedback.
  143. .. _class_XRInterface_constant_XR_NOT_TRACKING:
  144. .. rst-class:: classref-enumeration-constant
  145. :ref:`TrackingStatus<enum_XRInterface_TrackingStatus>` **XR_NOT_TRACKING** = ``4``
  146. Tracking is not functional (camera not plugged in or obscured, lighthouses turned off, etc.).
  147. .. rst-class:: classref-item-separator
  148. ----
  149. .. _enum_XRInterface_PlayAreaMode:
  150. .. rst-class:: classref-enumeration
  151. enum **PlayAreaMode**:
  152. .. _class_XRInterface_constant_XR_PLAY_AREA_UNKNOWN:
  153. .. rst-class:: classref-enumeration-constant
  154. :ref:`PlayAreaMode<enum_XRInterface_PlayAreaMode>` **XR_PLAY_AREA_UNKNOWN** = ``0``
  155. Play area mode not set or not available.
  156. .. _class_XRInterface_constant_XR_PLAY_AREA_3DOF:
  157. .. rst-class:: classref-enumeration-constant
  158. :ref:`PlayAreaMode<enum_XRInterface_PlayAreaMode>` **XR_PLAY_AREA_3DOF** = ``1``
  159. Play area only supports orientation tracking, no positional tracking, area will center around player.
  160. .. _class_XRInterface_constant_XR_PLAY_AREA_SITTING:
  161. .. rst-class:: classref-enumeration-constant
  162. :ref:`PlayAreaMode<enum_XRInterface_PlayAreaMode>` **XR_PLAY_AREA_SITTING** = ``2``
  163. Player is in seated position, limited positional tracking, fixed guardian around player.
  164. .. _class_XRInterface_constant_XR_PLAY_AREA_ROOMSCALE:
  165. .. rst-class:: classref-enumeration-constant
  166. :ref:`PlayAreaMode<enum_XRInterface_PlayAreaMode>` **XR_PLAY_AREA_ROOMSCALE** = ``3``
  167. Player is free to move around, full positional tracking.
  168. .. _class_XRInterface_constant_XR_PLAY_AREA_STAGE:
  169. .. rst-class:: classref-enumeration-constant
  170. :ref:`PlayAreaMode<enum_XRInterface_PlayAreaMode>` **XR_PLAY_AREA_STAGE** = ``4``
  171. Same as roomscale but origin point is fixed to the center of the physical space, XRServer.center_on_hmd disabled.
  172. .. rst-class:: classref-section-separator
  173. ----
  174. .. rst-class:: classref-descriptions-group
  175. Property Descriptions
  176. ---------------------
  177. .. _class_XRInterface_property_ar_is_anchor_detection_enabled:
  178. .. rst-class:: classref-property
  179. :ref:`bool<class_bool>` **ar_is_anchor_detection_enabled** = ``false``
  180. .. rst-class:: classref-property-setget
  181. - void **set_anchor_detection_is_enabled** **(** :ref:`bool<class_bool>` value **)**
  182. - :ref:`bool<class_bool>` **get_anchor_detection_is_enabled** **(** **)**
  183. On an AR interface, ``true`` if anchor detection is enabled.
  184. .. rst-class:: classref-item-separator
  185. ----
  186. .. _class_XRInterface_property_interface_is_primary:
  187. .. rst-class:: classref-property
  188. :ref:`bool<class_bool>` **interface_is_primary** = ``false``
  189. .. rst-class:: classref-property-setget
  190. - void **set_primary** **(** :ref:`bool<class_bool>` value **)**
  191. - :ref:`bool<class_bool>` **is_primary** **(** **)**
  192. ``true`` if this is the primary interface.
  193. .. rst-class:: classref-item-separator
  194. ----
  195. .. _class_XRInterface_property_xr_play_area_mode:
  196. .. rst-class:: classref-property
  197. :ref:`PlayAreaMode<enum_XRInterface_PlayAreaMode>` **xr_play_area_mode** = ``0``
  198. .. rst-class:: classref-property-setget
  199. - :ref:`bool<class_bool>` **set_play_area_mode** **(** :ref:`PlayAreaMode<enum_XRInterface_PlayAreaMode>` mode **)**
  200. - :ref:`PlayAreaMode<enum_XRInterface_PlayAreaMode>` **get_play_area_mode** **(** **)**
  201. The play area mode for this interface.
  202. .. rst-class:: classref-section-separator
  203. ----
  204. .. rst-class:: classref-descriptions-group
  205. Method Descriptions
  206. -------------------
  207. .. _class_XRInterface_method_get_camera_feed_id:
  208. .. rst-class:: classref-method
  209. :ref:`int<class_int>` **get_camera_feed_id** **(** **)**
  210. If this is an AR interface that requires displaying a camera feed as the background, this method returns the feed ID in the :ref:`CameraServer<class_CameraServer>` for this interface.
  211. .. rst-class:: classref-item-separator
  212. ----
  213. .. _class_XRInterface_method_get_capabilities:
  214. .. rst-class:: classref-method
  215. :ref:`int<class_int>` **get_capabilities** **(** **)** |const|
  216. Returns a combination of :ref:`Capabilities<enum_XRInterface_Capabilities>` flags providing information about the capabilities of this interface.
  217. .. rst-class:: classref-item-separator
  218. ----
  219. .. _class_XRInterface_method_get_name:
  220. .. rst-class:: classref-method
  221. :ref:`StringName<class_StringName>` **get_name** **(** **)** |const|
  222. Returns the name of this interface (OpenXR, OpenVR, OpenHMD, ARKit, etc).
  223. .. rst-class:: classref-item-separator
  224. ----
  225. .. _class_XRInterface_method_get_play_area:
  226. .. rst-class:: classref-method
  227. :ref:`PackedVector3Array<class_PackedVector3Array>` **get_play_area** **(** **)** |const|
  228. Returns an array of vectors that denotes the physical play area mapped to the virtual space around the :ref:`XROrigin3D<class_XROrigin3D>` point. The points form a convex polygon that can be used to react to or visualize the play area. This returns an empty array if this feature is not supported or if the information is not yet available.
  229. .. rst-class:: classref-item-separator
  230. ----
  231. .. _class_XRInterface_method_get_projection_for_view:
  232. .. rst-class:: classref-method
  233. :ref:`Projection<class_Projection>` **get_projection_for_view** **(** :ref:`int<class_int>` view, :ref:`float<class_float>` aspect, :ref:`float<class_float>` near, :ref:`float<class_float>` far **)**
  234. Returns the projection matrix for a view/eye.
  235. .. rst-class:: classref-item-separator
  236. ----
  237. .. _class_XRInterface_method_get_render_target_size:
  238. .. rst-class:: classref-method
  239. :ref:`Vector2<class_Vector2>` **get_render_target_size** **(** **)**
  240. Returns the resolution at which we should render our intermediate results before things like lens distortion are applied by the VR platform.
  241. .. rst-class:: classref-item-separator
  242. ----
  243. .. _class_XRInterface_method_get_tracking_status:
  244. .. rst-class:: classref-method
  245. :ref:`TrackingStatus<enum_XRInterface_TrackingStatus>` **get_tracking_status** **(** **)** |const|
  246. 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.
  247. .. rst-class:: classref-item-separator
  248. ----
  249. .. _class_XRInterface_method_get_transform_for_view:
  250. .. rst-class:: classref-method
  251. :ref:`Transform3D<class_Transform3D>` **get_transform_for_view** **(** :ref:`int<class_int>` view, :ref:`Transform3D<class_Transform3D>` cam_transform **)**
  252. Returns the transform for a view/eye.
  253. \ ``view`` is the view/eye index.
  254. \ ``cam_transform`` is the transform that maps device coordinates to scene coordinates, typically the global_transform of the current XROrigin3D.
  255. .. rst-class:: classref-item-separator
  256. ----
  257. .. _class_XRInterface_method_get_view_count:
  258. .. rst-class:: classref-method
  259. :ref:`int<class_int>` **get_view_count** **(** **)**
  260. Returns the number of views that need to be rendered for this device. 1 for Monoscopic, 2 for Stereoscopic.
  261. .. rst-class:: classref-item-separator
  262. ----
  263. .. _class_XRInterface_method_initialize:
  264. .. rst-class:: classref-method
  265. :ref:`bool<class_bool>` **initialize** **(** **)**
  266. Call this to initialize this interface. The first interface that is initialized is identified as the primary interface and it will be used for rendering output.
  267. After initializing the interface you want to use you then need to enable the AR/VR mode of a viewport and rendering should commence.
  268. \ **Note:** You must enable the XR mode on the main viewport for any device that uses the main output of Godot, such as for mobile VR.
  269. If you do this for a platform that handles its own output (such as OpenVR) Godot will show just one eye without distortion on screen. Alternatively, you can add a separate viewport node to your scene and enable AR/VR on that viewport. It will be used to output to the HMD, leaving you free to do anything you like in the main window, such as using a separate camera as a spectator camera or rendering something completely different.
  270. While currently not used, you can activate additional interfaces. You may wish to do this if you want to track controllers from other platforms. However, at this point in time only one interface can render to an HMD.
  271. .. rst-class:: classref-item-separator
  272. ----
  273. .. _class_XRInterface_method_is_initialized:
  274. .. rst-class:: classref-method
  275. :ref:`bool<class_bool>` **is_initialized** **(** **)** |const|
  276. Is ``true`` if this interface has been initialized.
  277. .. rst-class:: classref-item-separator
  278. ----
  279. .. _class_XRInterface_method_is_passthrough_enabled:
  280. .. rst-class:: classref-method
  281. :ref:`bool<class_bool>` **is_passthrough_enabled** **(** **)**
  282. Is ``true`` if passthrough is enabled.
  283. .. rst-class:: classref-item-separator
  284. ----
  285. .. _class_XRInterface_method_is_passthrough_supported:
  286. .. rst-class:: classref-method
  287. :ref:`bool<class_bool>` **is_passthrough_supported** **(** **)**
  288. Is ``true`` if this interface supports passthrough.
  289. .. rst-class:: classref-item-separator
  290. ----
  291. .. _class_XRInterface_method_set_play_area_mode:
  292. .. rst-class:: classref-method
  293. :ref:`bool<class_bool>` **set_play_area_mode** **(** :ref:`PlayAreaMode<enum_XRInterface_PlayAreaMode>` mode **)**
  294. Sets the active play area mode, will return ``false`` if the mode can't be used with this interface.
  295. .. rst-class:: classref-item-separator
  296. ----
  297. .. _class_XRInterface_method_start_passthrough:
  298. .. rst-class:: classref-method
  299. :ref:`bool<class_bool>` **start_passthrough** **(** **)**
  300. Starts passthrough, will return ``false`` if passthrough couldn't be started.
  301. \ **Note:** The viewport used for XR must have a transparent background, otherwise passthrough may not properly render.
  302. .. rst-class:: classref-item-separator
  303. ----
  304. .. _class_XRInterface_method_stop_passthrough:
  305. .. rst-class:: classref-method
  306. void **stop_passthrough** **(** **)**
  307. Stops passthrough.
  308. .. rst-class:: classref-item-separator
  309. ----
  310. .. _class_XRInterface_method_supports_play_area_mode:
  311. .. rst-class:: classref-method
  312. :ref:`bool<class_bool>` **supports_play_area_mode** **(** :ref:`PlayAreaMode<enum_XRInterface_PlayAreaMode>` mode **)**
  313. Call this to find out if a given play area mode is supported by this interface.
  314. .. rst-class:: classref-item-separator
  315. ----
  316. .. _class_XRInterface_method_trigger_haptic_pulse:
  317. .. rst-class:: classref-method
  318. void **trigger_haptic_pulse** **(** :ref:`String<class_String>` action_name, :ref:`StringName<class_StringName>` tracker_name, :ref:`float<class_float>` frequency, :ref:`float<class_float>` amplitude, :ref:`float<class_float>` duration_sec, :ref:`float<class_float>` delay_sec **)**
  319. Triggers a haptic pulse on a device associated with this interface.
  320. \ ``action_name`` is the name of the action for this pulse.
  321. \ ``tracker_name`` is optional and can be used to direct the pulse to a specific device provided that device is bound to this haptic.
  322. .. rst-class:: classref-item-separator
  323. ----
  324. .. _class_XRInterface_method_uninitialize:
  325. .. rst-class:: classref-method
  326. void **uninitialize** **(** **)**
  327. Turns the interface off.
  328. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  329. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  330. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  331. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  332. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  333. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`