class_xrserver.rst 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527
  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/XRServer.xml.
  6. .. _class_XRServer:
  7. XRServer
  8. ========
  9. **Inherits:** :ref:`Object<class_Object>`
  10. Server for AR and VR features.
  11. .. rst-class:: classref-introduction-group
  12. Description
  13. -----------
  14. The AR/VR server is the heart of our Advanced and Virtual Reality solution and handles all the processing.
  15. .. rst-class:: classref-introduction-group
  16. Tutorials
  17. ---------
  18. - :doc:`XR documentation index <../tutorials/xr/index>`
  19. .. rst-class:: classref-reftable-group
  20. Properties
  21. ----------
  22. .. table::
  23. :widths: auto
  24. +---------------------------------------+---------------------------------------------------------------------+-----------------------------------------------------+
  25. | :ref:`XRInterface<class_XRInterface>` | :ref:`primary_interface<class_XRServer_property_primary_interface>` | |
  26. +---------------------------------------+---------------------------------------------------------------------+-----------------------------------------------------+
  27. | :ref:`Transform3D<class_Transform3D>` | :ref:`world_origin<class_XRServer_property_world_origin>` | ``Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0)`` |
  28. +---------------------------------------+---------------------------------------------------------------------+-----------------------------------------------------+
  29. | :ref:`float<class_float>` | :ref:`world_scale<class_XRServer_property_world_scale>` | ``1.0`` |
  30. +---------------------------------------+---------------------------------------------------------------------+-----------------------------------------------------+
  31. .. rst-class:: classref-reftable-group
  32. Methods
  33. -------
  34. .. table::
  35. :widths: auto
  36. +------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  37. | |void| | :ref:`add_interface<class_XRServer_method_add_interface>`\ (\ interface\: :ref:`XRInterface<class_XRInterface>`\ ) |
  38. +------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  39. | |void| | :ref:`add_tracker<class_XRServer_method_add_tracker>`\ (\ tracker\: :ref:`XRTracker<class_XRTracker>`\ ) |
  40. +------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  41. | |void| | :ref:`center_on_hmd<class_XRServer_method_center_on_hmd>`\ (\ rotation_mode\: :ref:`RotationMode<enum_XRServer_RotationMode>`, keep_height\: :ref:`bool<class_bool>`\ ) |
  42. +------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  43. | |void| | :ref:`clear_reference_frame<class_XRServer_method_clear_reference_frame>`\ (\ ) |
  44. +------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  45. | :ref:`XRInterface<class_XRInterface>` | :ref:`find_interface<class_XRServer_method_find_interface>`\ (\ name\: :ref:`String<class_String>`\ ) |const| |
  46. +------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  47. | :ref:`Transform3D<class_Transform3D>` | :ref:`get_hmd_transform<class_XRServer_method_get_hmd_transform>`\ (\ ) |
  48. +------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  49. | :ref:`XRInterface<class_XRInterface>` | :ref:`get_interface<class_XRServer_method_get_interface>`\ (\ idx\: :ref:`int<class_int>`\ ) |const| |
  50. +------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  51. | :ref:`int<class_int>` | :ref:`get_interface_count<class_XRServer_method_get_interface_count>`\ (\ ) |const| |
  52. +------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  53. | :ref:`Array<class_Array>`\[:ref:`Dictionary<class_Dictionary>`\] | :ref:`get_interfaces<class_XRServer_method_get_interfaces>`\ (\ ) |const| |
  54. +------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  55. | :ref:`Transform3D<class_Transform3D>` | :ref:`get_reference_frame<class_XRServer_method_get_reference_frame>`\ (\ ) |const| |
  56. +------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  57. | :ref:`XRTracker<class_XRTracker>` | :ref:`get_tracker<class_XRServer_method_get_tracker>`\ (\ tracker_name\: :ref:`StringName<class_StringName>`\ ) |const| |
  58. +------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  59. | :ref:`Dictionary<class_Dictionary>` | :ref:`get_trackers<class_XRServer_method_get_trackers>`\ (\ tracker_types\: :ref:`int<class_int>`\ ) |
  60. +------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  61. | |void| | :ref:`remove_interface<class_XRServer_method_remove_interface>`\ (\ interface\: :ref:`XRInterface<class_XRInterface>`\ ) |
  62. +------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  63. | |void| | :ref:`remove_tracker<class_XRServer_method_remove_tracker>`\ (\ tracker\: :ref:`XRTracker<class_XRTracker>`\ ) |
  64. +------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  65. .. rst-class:: classref-section-separator
  66. ----
  67. .. rst-class:: classref-descriptions-group
  68. Signals
  69. -------
  70. .. _class_XRServer_signal_interface_added:
  71. .. rst-class:: classref-signal
  72. **interface_added**\ (\ interface_name\: :ref:`StringName<class_StringName>`\ )
  73. Emitted when a new interface has been added.
  74. .. rst-class:: classref-item-separator
  75. ----
  76. .. _class_XRServer_signal_interface_removed:
  77. .. rst-class:: classref-signal
  78. **interface_removed**\ (\ interface_name\: :ref:`StringName<class_StringName>`\ )
  79. Emitted when an interface is removed.
  80. .. rst-class:: classref-item-separator
  81. ----
  82. .. _class_XRServer_signal_tracker_added:
  83. .. rst-class:: classref-signal
  84. **tracker_added**\ (\ tracker_name\: :ref:`StringName<class_StringName>`, type\: :ref:`int<class_int>`\ )
  85. Emitted when a new tracker has been added. If you don't use a fixed number of controllers or if you're using :ref:`XRAnchor3D<class_XRAnchor3D>`\ s for an AR solution, it is important to react to this signal to add the appropriate :ref:`XRController3D<class_XRController3D>` or :ref:`XRAnchor3D<class_XRAnchor3D>` nodes related to this new tracker.
  86. .. rst-class:: classref-item-separator
  87. ----
  88. .. _class_XRServer_signal_tracker_removed:
  89. .. rst-class:: classref-signal
  90. **tracker_removed**\ (\ tracker_name\: :ref:`StringName<class_StringName>`, type\: :ref:`int<class_int>`\ )
  91. Emitted when a tracker is removed. You should remove any :ref:`XRController3D<class_XRController3D>` or :ref:`XRAnchor3D<class_XRAnchor3D>` points if applicable. This is not mandatory, the nodes simply become inactive and will be made active again when a new tracker becomes available (i.e. a new controller is switched on that takes the place of the previous one).
  92. .. rst-class:: classref-item-separator
  93. ----
  94. .. _class_XRServer_signal_tracker_updated:
  95. .. rst-class:: classref-signal
  96. **tracker_updated**\ (\ tracker_name\: :ref:`StringName<class_StringName>`, type\: :ref:`int<class_int>`\ )
  97. Emitted when an existing tracker has been updated. This can happen if the user switches controllers.
  98. .. rst-class:: classref-section-separator
  99. ----
  100. .. rst-class:: classref-descriptions-group
  101. Enumerations
  102. ------------
  103. .. _enum_XRServer_TrackerType:
  104. .. rst-class:: classref-enumeration
  105. enum **TrackerType**:
  106. .. _class_XRServer_constant_TRACKER_HEAD:
  107. .. rst-class:: classref-enumeration-constant
  108. :ref:`TrackerType<enum_XRServer_TrackerType>` **TRACKER_HEAD** = ``1``
  109. The tracker tracks the location of the players head. This is usually a location centered between the players eyes. Note that for handheld AR devices this can be the current location of the device.
  110. .. _class_XRServer_constant_TRACKER_CONTROLLER:
  111. .. rst-class:: classref-enumeration-constant
  112. :ref:`TrackerType<enum_XRServer_TrackerType>` **TRACKER_CONTROLLER** = ``2``
  113. The tracker tracks the location of a controller.
  114. .. _class_XRServer_constant_TRACKER_BASESTATION:
  115. .. rst-class:: classref-enumeration-constant
  116. :ref:`TrackerType<enum_XRServer_TrackerType>` **TRACKER_BASESTATION** = ``4``
  117. The tracker tracks the location of a base station.
  118. .. _class_XRServer_constant_TRACKER_ANCHOR:
  119. .. rst-class:: classref-enumeration-constant
  120. :ref:`TrackerType<enum_XRServer_TrackerType>` **TRACKER_ANCHOR** = ``8``
  121. The tracker tracks the location and size of an AR anchor.
  122. .. _class_XRServer_constant_TRACKER_HAND:
  123. .. rst-class:: classref-enumeration-constant
  124. :ref:`TrackerType<enum_XRServer_TrackerType>` **TRACKER_HAND** = ``16``
  125. The tracker tracks the location and joints of a hand.
  126. .. _class_XRServer_constant_TRACKER_BODY:
  127. .. rst-class:: classref-enumeration-constant
  128. :ref:`TrackerType<enum_XRServer_TrackerType>` **TRACKER_BODY** = ``32``
  129. The tracker tracks the location and joints of a body.
  130. .. _class_XRServer_constant_TRACKER_FACE:
  131. .. rst-class:: classref-enumeration-constant
  132. :ref:`TrackerType<enum_XRServer_TrackerType>` **TRACKER_FACE** = ``64``
  133. The tracker tracks the expressions of a face.
  134. .. _class_XRServer_constant_TRACKER_ANY_KNOWN:
  135. .. rst-class:: classref-enumeration-constant
  136. :ref:`TrackerType<enum_XRServer_TrackerType>` **TRACKER_ANY_KNOWN** = ``127``
  137. Used internally to filter trackers of any known type.
  138. .. _class_XRServer_constant_TRACKER_UNKNOWN:
  139. .. rst-class:: classref-enumeration-constant
  140. :ref:`TrackerType<enum_XRServer_TrackerType>` **TRACKER_UNKNOWN** = ``128``
  141. Used internally if we haven't set the tracker type yet.
  142. .. _class_XRServer_constant_TRACKER_ANY:
  143. .. rst-class:: classref-enumeration-constant
  144. :ref:`TrackerType<enum_XRServer_TrackerType>` **TRACKER_ANY** = ``255``
  145. Used internally to select all trackers.
  146. .. rst-class:: classref-item-separator
  147. ----
  148. .. _enum_XRServer_RotationMode:
  149. .. rst-class:: classref-enumeration
  150. enum **RotationMode**:
  151. .. _class_XRServer_constant_RESET_FULL_ROTATION:
  152. .. rst-class:: classref-enumeration-constant
  153. :ref:`RotationMode<enum_XRServer_RotationMode>` **RESET_FULL_ROTATION** = ``0``
  154. Fully reset the orientation of the HMD. Regardless of what direction the user is looking to in the real world. The user will look dead ahead in the virtual world.
  155. .. _class_XRServer_constant_RESET_BUT_KEEP_TILT:
  156. .. rst-class:: classref-enumeration-constant
  157. :ref:`RotationMode<enum_XRServer_RotationMode>` **RESET_BUT_KEEP_TILT** = ``1``
  158. Resets the orientation but keeps the tilt of the device. So if we're looking down, we keep looking down but heading will be reset.
  159. .. _class_XRServer_constant_DONT_RESET_ROTATION:
  160. .. rst-class:: classref-enumeration-constant
  161. :ref:`RotationMode<enum_XRServer_RotationMode>` **DONT_RESET_ROTATION** = ``2``
  162. Does not reset the orientation of the HMD, only the position of the player gets centered.
  163. .. rst-class:: classref-section-separator
  164. ----
  165. .. rst-class:: classref-descriptions-group
  166. Property Descriptions
  167. ---------------------
  168. .. _class_XRServer_property_primary_interface:
  169. .. rst-class:: classref-property
  170. :ref:`XRInterface<class_XRInterface>` **primary_interface**
  171. .. rst-class:: classref-property-setget
  172. - |void| **set_primary_interface**\ (\ value\: :ref:`XRInterface<class_XRInterface>`\ )
  173. - :ref:`XRInterface<class_XRInterface>` **get_primary_interface**\ (\ )
  174. The primary :ref:`XRInterface<class_XRInterface>` currently bound to the **XRServer**.
  175. .. rst-class:: classref-item-separator
  176. ----
  177. .. _class_XRServer_property_world_origin:
  178. .. rst-class:: classref-property
  179. :ref:`Transform3D<class_Transform3D>` **world_origin** = ``Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0)``
  180. .. rst-class:: classref-property-setget
  181. - |void| **set_world_origin**\ (\ value\: :ref:`Transform3D<class_Transform3D>`\ )
  182. - :ref:`Transform3D<class_Transform3D>` **get_world_origin**\ (\ )
  183. The current origin of our tracking space in the virtual world. This is used by the renderer to properly position the camera with new tracking data.
  184. \ **Note:** This property is managed by the current :ref:`XROrigin3D<class_XROrigin3D>` node. It is exposed for access from GDExtensions.
  185. .. rst-class:: classref-item-separator
  186. ----
  187. .. _class_XRServer_property_world_scale:
  188. .. rst-class:: classref-property
  189. :ref:`float<class_float>` **world_scale** = ``1.0``
  190. .. rst-class:: classref-property-setget
  191. - |void| **set_world_scale**\ (\ value\: :ref:`float<class_float>`\ )
  192. - :ref:`float<class_float>` **get_world_scale**\ (\ )
  193. The scale of the game world compared to the real world. By default, most AR/VR platforms assume that 1 game unit corresponds to 1 real world meter.
  194. .. rst-class:: classref-section-separator
  195. ----
  196. .. rst-class:: classref-descriptions-group
  197. Method Descriptions
  198. -------------------
  199. .. _class_XRServer_method_add_interface:
  200. .. rst-class:: classref-method
  201. |void| **add_interface**\ (\ interface\: :ref:`XRInterface<class_XRInterface>`\ )
  202. Registers an :ref:`XRInterface<class_XRInterface>` object.
  203. .. rst-class:: classref-item-separator
  204. ----
  205. .. _class_XRServer_method_add_tracker:
  206. .. rst-class:: classref-method
  207. |void| **add_tracker**\ (\ tracker\: :ref:`XRTracker<class_XRTracker>`\ )
  208. Registers a new :ref:`XRTracker<class_XRTracker>` that tracks a physical object.
  209. .. rst-class:: classref-item-separator
  210. ----
  211. .. _class_XRServer_method_center_on_hmd:
  212. .. rst-class:: classref-method
  213. |void| **center_on_hmd**\ (\ rotation_mode\: :ref:`RotationMode<enum_XRServer_RotationMode>`, keep_height\: :ref:`bool<class_bool>`\ )
  214. This is an important function to understand correctly. AR and VR platforms all handle positioning slightly differently.
  215. For platforms that do not offer spatial tracking, our origin point (0, 0, 0) is the location of our HMD, but you have little control over the direction the player is facing in the real world.
  216. For platforms that do offer spatial tracking, our origin point depends very much on the system. For OpenVR, our origin point is usually the center of the tracking space, on the ground. For other platforms, it's often the location of the tracking camera.
  217. This method allows you to center your tracker on the location of the HMD. It will take the current location of the HMD and use that to adjust all your tracking data; in essence, realigning the real world to your player's current position in the game world.
  218. For this method to produce usable results, tracking information must be available. This often takes a few frames after starting your game.
  219. You should call this method after a few seconds have passed. For example, when the user requests a realignment of the display holding a designated button on a controller for a short period of time, or when implementing a teleport mechanism.
  220. .. rst-class:: classref-item-separator
  221. ----
  222. .. _class_XRServer_method_clear_reference_frame:
  223. .. rst-class:: classref-method
  224. |void| **clear_reference_frame**\ (\ )
  225. Clears the reference frame that was set by previous calls to :ref:`center_on_hmd<class_XRServer_method_center_on_hmd>`.
  226. .. rst-class:: classref-item-separator
  227. ----
  228. .. _class_XRServer_method_find_interface:
  229. .. rst-class:: classref-method
  230. :ref:`XRInterface<class_XRInterface>` **find_interface**\ (\ name\: :ref:`String<class_String>`\ ) |const|
  231. Finds an interface by its ``name``. For example, if your project uses capabilities of an AR/VR platform, you can find the interface for that platform by name and initialize it.
  232. .. rst-class:: classref-item-separator
  233. ----
  234. .. _class_XRServer_method_get_hmd_transform:
  235. .. rst-class:: classref-method
  236. :ref:`Transform3D<class_Transform3D>` **get_hmd_transform**\ (\ )
  237. Returns the primary interface's transformation.
  238. .. rst-class:: classref-item-separator
  239. ----
  240. .. _class_XRServer_method_get_interface:
  241. .. rst-class:: classref-method
  242. :ref:`XRInterface<class_XRInterface>` **get_interface**\ (\ idx\: :ref:`int<class_int>`\ ) |const|
  243. Returns the interface registered at the given ``idx`` index in the list of interfaces.
  244. .. rst-class:: classref-item-separator
  245. ----
  246. .. _class_XRServer_method_get_interface_count:
  247. .. rst-class:: classref-method
  248. :ref:`int<class_int>` **get_interface_count**\ (\ ) |const|
  249. Returns the number of interfaces currently registered with the AR/VR server. If your project supports multiple AR/VR platforms, you can look through the available interface, and either present the user with a selection or simply try to initialize each interface and use the first one that returns ``true``.
  250. .. rst-class:: classref-item-separator
  251. ----
  252. .. _class_XRServer_method_get_interfaces:
  253. .. rst-class:: classref-method
  254. :ref:`Array<class_Array>`\[:ref:`Dictionary<class_Dictionary>`\] **get_interfaces**\ (\ ) |const|
  255. Returns a list of available interfaces the ID and name of each interface.
  256. .. rst-class:: classref-item-separator
  257. ----
  258. .. _class_XRServer_method_get_reference_frame:
  259. .. rst-class:: classref-method
  260. :ref:`Transform3D<class_Transform3D>` **get_reference_frame**\ (\ ) |const|
  261. Returns the reference frame transform. Mostly used internally and exposed for GDExtension build interfaces.
  262. .. rst-class:: classref-item-separator
  263. ----
  264. .. _class_XRServer_method_get_tracker:
  265. .. rst-class:: classref-method
  266. :ref:`XRTracker<class_XRTracker>` **get_tracker**\ (\ tracker_name\: :ref:`StringName<class_StringName>`\ ) |const|
  267. Returns the positional tracker with the given ``tracker_name``.
  268. .. rst-class:: classref-item-separator
  269. ----
  270. .. _class_XRServer_method_get_trackers:
  271. .. rst-class:: classref-method
  272. :ref:`Dictionary<class_Dictionary>` **get_trackers**\ (\ tracker_types\: :ref:`int<class_int>`\ )
  273. Returns a dictionary of trackers for ``tracker_types``.
  274. .. rst-class:: classref-item-separator
  275. ----
  276. .. _class_XRServer_method_remove_interface:
  277. .. rst-class:: classref-method
  278. |void| **remove_interface**\ (\ interface\: :ref:`XRInterface<class_XRInterface>`\ )
  279. Removes this ``interface``.
  280. .. rst-class:: classref-item-separator
  281. ----
  282. .. _class_XRServer_method_remove_tracker:
  283. .. rst-class:: classref-method
  284. |void| **remove_tracker**\ (\ tracker\: :ref:`XRTracker<class_XRTracker>`\ )
  285. Removes this ``tracker``.
  286. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  287. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  288. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  289. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  290. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  291. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  292. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`
  293. .. |void| replace:: :abbr:`void (No return value.)`