class_xrserver.rst 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540
  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>`\ ) :ref:`🔗<class_XRServer_signal_interface_added>`
  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>`\ ) :ref:`🔗<class_XRServer_signal_interface_removed>`
  79. Emitted when an interface is removed.
  80. .. rst-class:: classref-item-separator
  81. ----
  82. .. _class_XRServer_signal_reference_frame_changed:
  83. .. rst-class:: classref-signal
  84. **reference_frame_changed**\ (\ ) :ref:`🔗<class_XRServer_signal_reference_frame_changed>`
  85. Emitted when the reference frame transform changes.
  86. .. rst-class:: classref-item-separator
  87. ----
  88. .. _class_XRServer_signal_tracker_added:
  89. .. rst-class:: classref-signal
  90. **tracker_added**\ (\ tracker_name\: :ref:`StringName<class_StringName>`, type\: :ref:`int<class_int>`\ ) :ref:`🔗<class_XRServer_signal_tracker_added>`
  91. 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.
  92. .. rst-class:: classref-item-separator
  93. ----
  94. .. _class_XRServer_signal_tracker_removed:
  95. .. rst-class:: classref-signal
  96. **tracker_removed**\ (\ tracker_name\: :ref:`StringName<class_StringName>`, type\: :ref:`int<class_int>`\ ) :ref:`🔗<class_XRServer_signal_tracker_removed>`
  97. 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).
  98. .. rst-class:: classref-item-separator
  99. ----
  100. .. _class_XRServer_signal_tracker_updated:
  101. .. rst-class:: classref-signal
  102. **tracker_updated**\ (\ tracker_name\: :ref:`StringName<class_StringName>`, type\: :ref:`int<class_int>`\ ) :ref:`🔗<class_XRServer_signal_tracker_updated>`
  103. Emitted when an existing tracker has been updated. This can happen if the user switches controllers.
  104. .. rst-class:: classref-section-separator
  105. ----
  106. .. rst-class:: classref-descriptions-group
  107. Enumerations
  108. ------------
  109. .. _enum_XRServer_TrackerType:
  110. .. rst-class:: classref-enumeration
  111. enum **TrackerType**: :ref:`🔗<enum_XRServer_TrackerType>`
  112. .. _class_XRServer_constant_TRACKER_HEAD:
  113. .. rst-class:: classref-enumeration-constant
  114. :ref:`TrackerType<enum_XRServer_TrackerType>` **TRACKER_HEAD** = ``1``
  115. 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.
  116. .. _class_XRServer_constant_TRACKER_CONTROLLER:
  117. .. rst-class:: classref-enumeration-constant
  118. :ref:`TrackerType<enum_XRServer_TrackerType>` **TRACKER_CONTROLLER** = ``2``
  119. The tracker tracks the location of a controller.
  120. .. _class_XRServer_constant_TRACKER_BASESTATION:
  121. .. rst-class:: classref-enumeration-constant
  122. :ref:`TrackerType<enum_XRServer_TrackerType>` **TRACKER_BASESTATION** = ``4``
  123. The tracker tracks the location of a base station.
  124. .. _class_XRServer_constant_TRACKER_ANCHOR:
  125. .. rst-class:: classref-enumeration-constant
  126. :ref:`TrackerType<enum_XRServer_TrackerType>` **TRACKER_ANCHOR** = ``8``
  127. The tracker tracks the location and size of an AR anchor.
  128. .. _class_XRServer_constant_TRACKER_HAND:
  129. .. rst-class:: classref-enumeration-constant
  130. :ref:`TrackerType<enum_XRServer_TrackerType>` **TRACKER_HAND** = ``16``
  131. The tracker tracks the location and joints of a hand.
  132. .. _class_XRServer_constant_TRACKER_BODY:
  133. .. rst-class:: classref-enumeration-constant
  134. :ref:`TrackerType<enum_XRServer_TrackerType>` **TRACKER_BODY** = ``32``
  135. The tracker tracks the location and joints of a body.
  136. .. _class_XRServer_constant_TRACKER_FACE:
  137. .. rst-class:: classref-enumeration-constant
  138. :ref:`TrackerType<enum_XRServer_TrackerType>` **TRACKER_FACE** = ``64``
  139. The tracker tracks the expressions of a face.
  140. .. _class_XRServer_constant_TRACKER_ANY_KNOWN:
  141. .. rst-class:: classref-enumeration-constant
  142. :ref:`TrackerType<enum_XRServer_TrackerType>` **TRACKER_ANY_KNOWN** = ``127``
  143. Used internally to filter trackers of any known type.
  144. .. _class_XRServer_constant_TRACKER_UNKNOWN:
  145. .. rst-class:: classref-enumeration-constant
  146. :ref:`TrackerType<enum_XRServer_TrackerType>` **TRACKER_UNKNOWN** = ``128``
  147. Used internally if we haven't set the tracker type yet.
  148. .. _class_XRServer_constant_TRACKER_ANY:
  149. .. rst-class:: classref-enumeration-constant
  150. :ref:`TrackerType<enum_XRServer_TrackerType>` **TRACKER_ANY** = ``255``
  151. Used internally to select all trackers.
  152. .. rst-class:: classref-item-separator
  153. ----
  154. .. _enum_XRServer_RotationMode:
  155. .. rst-class:: classref-enumeration
  156. enum **RotationMode**: :ref:`🔗<enum_XRServer_RotationMode>`
  157. .. _class_XRServer_constant_RESET_FULL_ROTATION:
  158. .. rst-class:: classref-enumeration-constant
  159. :ref:`RotationMode<enum_XRServer_RotationMode>` **RESET_FULL_ROTATION** = ``0``
  160. 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.
  161. .. _class_XRServer_constant_RESET_BUT_KEEP_TILT:
  162. .. rst-class:: classref-enumeration-constant
  163. :ref:`RotationMode<enum_XRServer_RotationMode>` **RESET_BUT_KEEP_TILT** = ``1``
  164. 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.
  165. .. _class_XRServer_constant_DONT_RESET_ROTATION:
  166. .. rst-class:: classref-enumeration-constant
  167. :ref:`RotationMode<enum_XRServer_RotationMode>` **DONT_RESET_ROTATION** = ``2``
  168. Does not reset the orientation of the HMD, only the position of the player gets centered.
  169. .. rst-class:: classref-section-separator
  170. ----
  171. .. rst-class:: classref-descriptions-group
  172. Property Descriptions
  173. ---------------------
  174. .. _class_XRServer_property_primary_interface:
  175. .. rst-class:: classref-property
  176. :ref:`XRInterface<class_XRInterface>` **primary_interface** :ref:`🔗<class_XRServer_property_primary_interface>`
  177. .. rst-class:: classref-property-setget
  178. - |void| **set_primary_interface**\ (\ value\: :ref:`XRInterface<class_XRInterface>`\ )
  179. - :ref:`XRInterface<class_XRInterface>` **get_primary_interface**\ (\ )
  180. The primary :ref:`XRInterface<class_XRInterface>` currently bound to the **XRServer**.
  181. .. rst-class:: classref-item-separator
  182. ----
  183. .. _class_XRServer_property_world_origin:
  184. .. rst-class:: classref-property
  185. :ref:`Transform3D<class_Transform3D>` **world_origin** = ``Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0)`` :ref:`🔗<class_XRServer_property_world_origin>`
  186. .. rst-class:: classref-property-setget
  187. - |void| **set_world_origin**\ (\ value\: :ref:`Transform3D<class_Transform3D>`\ )
  188. - :ref:`Transform3D<class_Transform3D>` **get_world_origin**\ (\ )
  189. 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.
  190. \ **Note:** This property is managed by the current :ref:`XROrigin3D<class_XROrigin3D>` node. It is exposed for access from GDExtensions.
  191. .. rst-class:: classref-item-separator
  192. ----
  193. .. _class_XRServer_property_world_scale:
  194. .. rst-class:: classref-property
  195. :ref:`float<class_float>` **world_scale** = ``1.0`` :ref:`🔗<class_XRServer_property_world_scale>`
  196. .. rst-class:: classref-property-setget
  197. - |void| **set_world_scale**\ (\ value\: :ref:`float<class_float>`\ )
  198. - :ref:`float<class_float>` **get_world_scale**\ (\ )
  199. 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.
  200. .. rst-class:: classref-section-separator
  201. ----
  202. .. rst-class:: classref-descriptions-group
  203. Method Descriptions
  204. -------------------
  205. .. _class_XRServer_method_add_interface:
  206. .. rst-class:: classref-method
  207. |void| **add_interface**\ (\ interface\: :ref:`XRInterface<class_XRInterface>`\ ) :ref:`🔗<class_XRServer_method_add_interface>`
  208. Registers an :ref:`XRInterface<class_XRInterface>` object.
  209. .. rst-class:: classref-item-separator
  210. ----
  211. .. _class_XRServer_method_add_tracker:
  212. .. rst-class:: classref-method
  213. |void| **add_tracker**\ (\ tracker\: :ref:`XRTracker<class_XRTracker>`\ ) :ref:`🔗<class_XRServer_method_add_tracker>`
  214. Registers a new :ref:`XRTracker<class_XRTracker>` that tracks a physical object.
  215. .. rst-class:: classref-item-separator
  216. ----
  217. .. _class_XRServer_method_center_on_hmd:
  218. .. rst-class:: classref-method
  219. |void| **center_on_hmd**\ (\ rotation_mode\: :ref:`RotationMode<enum_XRServer_RotationMode>`, keep_height\: :ref:`bool<class_bool>`\ ) :ref:`🔗<class_XRServer_method_center_on_hmd>`
  220. This is an important function to understand correctly. AR and VR platforms all handle positioning slightly differently.
  221. 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.
  222. 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.
  223. 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.
  224. For this method to produce usable results, tracking information must be available. This often takes a few frames after starting your game.
  225. 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.
  226. .. rst-class:: classref-item-separator
  227. ----
  228. .. _class_XRServer_method_clear_reference_frame:
  229. .. rst-class:: classref-method
  230. |void| **clear_reference_frame**\ (\ ) :ref:`🔗<class_XRServer_method_clear_reference_frame>`
  231. Clears the reference frame that was set by previous calls to :ref:`center_on_hmd<class_XRServer_method_center_on_hmd>`.
  232. .. rst-class:: classref-item-separator
  233. ----
  234. .. _class_XRServer_method_find_interface:
  235. .. rst-class:: classref-method
  236. :ref:`XRInterface<class_XRInterface>` **find_interface**\ (\ name\: :ref:`String<class_String>`\ ) |const| :ref:`🔗<class_XRServer_method_find_interface>`
  237. 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.
  238. .. rst-class:: classref-item-separator
  239. ----
  240. .. _class_XRServer_method_get_hmd_transform:
  241. .. rst-class:: classref-method
  242. :ref:`Transform3D<class_Transform3D>` **get_hmd_transform**\ (\ ) :ref:`🔗<class_XRServer_method_get_hmd_transform>`
  243. Returns the primary interface's transformation.
  244. .. rst-class:: classref-item-separator
  245. ----
  246. .. _class_XRServer_method_get_interface:
  247. .. rst-class:: classref-method
  248. :ref:`XRInterface<class_XRInterface>` **get_interface**\ (\ idx\: :ref:`int<class_int>`\ ) |const| :ref:`🔗<class_XRServer_method_get_interface>`
  249. Returns the interface registered at the given ``idx`` index in the list of interfaces.
  250. .. rst-class:: classref-item-separator
  251. ----
  252. .. _class_XRServer_method_get_interface_count:
  253. .. rst-class:: classref-method
  254. :ref:`int<class_int>` **get_interface_count**\ (\ ) |const| :ref:`🔗<class_XRServer_method_get_interface_count>`
  255. 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``.
  256. .. rst-class:: classref-item-separator
  257. ----
  258. .. _class_XRServer_method_get_interfaces:
  259. .. rst-class:: classref-method
  260. :ref:`Array<class_Array>`\[:ref:`Dictionary<class_Dictionary>`\] **get_interfaces**\ (\ ) |const| :ref:`🔗<class_XRServer_method_get_interfaces>`
  261. Returns a list of available interfaces the ID and name of each interface.
  262. .. rst-class:: classref-item-separator
  263. ----
  264. .. _class_XRServer_method_get_reference_frame:
  265. .. rst-class:: classref-method
  266. :ref:`Transform3D<class_Transform3D>` **get_reference_frame**\ (\ ) |const| :ref:`🔗<class_XRServer_method_get_reference_frame>`
  267. Returns the reference frame transform. Mostly used internally and exposed for GDExtension build interfaces.
  268. .. rst-class:: classref-item-separator
  269. ----
  270. .. _class_XRServer_method_get_tracker:
  271. .. rst-class:: classref-method
  272. :ref:`XRTracker<class_XRTracker>` **get_tracker**\ (\ tracker_name\: :ref:`StringName<class_StringName>`\ ) |const| :ref:`🔗<class_XRServer_method_get_tracker>`
  273. Returns the positional tracker with the given ``tracker_name``.
  274. .. rst-class:: classref-item-separator
  275. ----
  276. .. _class_XRServer_method_get_trackers:
  277. .. rst-class:: classref-method
  278. :ref:`Dictionary<class_Dictionary>` **get_trackers**\ (\ tracker_types\: :ref:`int<class_int>`\ ) :ref:`🔗<class_XRServer_method_get_trackers>`
  279. Returns a dictionary of trackers for ``tracker_types``.
  280. .. rst-class:: classref-item-separator
  281. ----
  282. .. _class_XRServer_method_remove_interface:
  283. .. rst-class:: classref-method
  284. |void| **remove_interface**\ (\ interface\: :ref:`XRInterface<class_XRInterface>`\ ) :ref:`🔗<class_XRServer_method_remove_interface>`
  285. Removes this ``interface``.
  286. .. rst-class:: classref-item-separator
  287. ----
  288. .. _class_XRServer_method_remove_tracker:
  289. .. rst-class:: classref-method
  290. |void| **remove_tracker**\ (\ tracker\: :ref:`XRTracker<class_XRTracker>`\ ) :ref:`🔗<class_XRServer_method_remove_tracker>`
  291. Removes this ``tracker``.
  292. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  293. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  294. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  295. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  296. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  297. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  298. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`
  299. .. |void| replace:: :abbr:`void (No return value.)`