class_mobilevrinterface.rst 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  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/4.2/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/4.2/modules/mobile_vr/doc_classes/MobileVRInterface.xml.
  6. .. _class_MobileVRInterface:
  7. MobileVRInterface
  8. =================
  9. **Inherits:** :ref:`XRInterface<class_XRInterface>` **<** :ref:`RefCounted<class_RefCounted>` **<** :ref:`Object<class_Object>`
  10. Generic mobile VR implementation.
  11. .. rst-class:: classref-introduction-group
  12. Description
  13. -----------
  14. This is a generic mobile VR implementation where you need to provide details about the phone and HMD used. It does not rely on any existing framework. This is the most basic interface we have. For the best effect, you need a mobile phone with a gyroscope and accelerometer.
  15. Note that even though there is no positional tracking, the camera will assume the headset is at a height of 1.85 meters. You can change this by setting :ref:`eye_height<class_MobileVRInterface_property_eye_height>`.
  16. You can initialize this interface as follows:
  17. ::
  18. var interface = XRServer.find_interface("Native mobile")
  19. if interface and interface.initialize():
  20. get_viewport().xr = true
  21. .. rst-class:: classref-reftable-group
  22. Properties
  23. ----------
  24. .. table::
  25. :widths: auto
  26. +----------------------------------------------------+--------------------------------------------------------------------------+------------------------------------------------------------------------------------+
  27. | :ref:`float<class_float>` | :ref:`display_to_lens<class_MobileVRInterface_property_display_to_lens>` | ``4.0`` |
  28. +----------------------------------------------------+--------------------------------------------------------------------------+------------------------------------------------------------------------------------+
  29. | :ref:`float<class_float>` | :ref:`display_width<class_MobileVRInterface_property_display_width>` | ``14.5`` |
  30. +----------------------------------------------------+--------------------------------------------------------------------------+------------------------------------------------------------------------------------+
  31. | :ref:`float<class_float>` | :ref:`eye_height<class_MobileVRInterface_property_eye_height>` | ``1.85`` |
  32. +----------------------------------------------------+--------------------------------------------------------------------------+------------------------------------------------------------------------------------+
  33. | :ref:`float<class_float>` | :ref:`iod<class_MobileVRInterface_property_iod>` | ``6.0`` |
  34. +----------------------------------------------------+--------------------------------------------------------------------------+------------------------------------------------------------------------------------+
  35. | :ref:`float<class_float>` | :ref:`k1<class_MobileVRInterface_property_k1>` | ``0.215`` |
  36. +----------------------------------------------------+--------------------------------------------------------------------------+------------------------------------------------------------------------------------+
  37. | :ref:`float<class_float>` | :ref:`k2<class_MobileVRInterface_property_k2>` | ``0.215`` |
  38. +----------------------------------------------------+--------------------------------------------------------------------------+------------------------------------------------------------------------------------+
  39. | :ref:`float<class_float>` | :ref:`oversample<class_MobileVRInterface_property_oversample>` | ``1.5`` |
  40. +----------------------------------------------------+--------------------------------------------------------------------------+------------------------------------------------------------------------------------+
  41. | :ref:`PlayAreaMode<enum_XRInterface_PlayAreaMode>` | xr_play_area_mode | ``1`` (overrides :ref:`XRInterface<class_XRInterface_property_xr_play_area_mode>`) |
  42. +----------------------------------------------------+--------------------------------------------------------------------------+------------------------------------------------------------------------------------+
  43. .. rst-class:: classref-section-separator
  44. ----
  45. .. rst-class:: classref-descriptions-group
  46. Property Descriptions
  47. ---------------------
  48. .. _class_MobileVRInterface_property_display_to_lens:
  49. .. rst-class:: classref-property
  50. :ref:`float<class_float>` **display_to_lens** = ``4.0``
  51. .. rst-class:: classref-property-setget
  52. - void **set_display_to_lens** **(** :ref:`float<class_float>` value **)**
  53. - :ref:`float<class_float>` **get_display_to_lens** **(** **)**
  54. The distance between the display and the lenses inside of the device in centimeters.
  55. .. rst-class:: classref-item-separator
  56. ----
  57. .. _class_MobileVRInterface_property_display_width:
  58. .. rst-class:: classref-property
  59. :ref:`float<class_float>` **display_width** = ``14.5``
  60. .. rst-class:: classref-property-setget
  61. - void **set_display_width** **(** :ref:`float<class_float>` value **)**
  62. - :ref:`float<class_float>` **get_display_width** **(** **)**
  63. The width of the display in centimeters.
  64. .. rst-class:: classref-item-separator
  65. ----
  66. .. _class_MobileVRInterface_property_eye_height:
  67. .. rst-class:: classref-property
  68. :ref:`float<class_float>` **eye_height** = ``1.85``
  69. .. rst-class:: classref-property-setget
  70. - void **set_eye_height** **(** :ref:`float<class_float>` value **)**
  71. - :ref:`float<class_float>` **get_eye_height** **(** **)**
  72. The height at which the camera is placed in relation to the ground (i.e. :ref:`XROrigin3D<class_XROrigin3D>` node).
  73. .. rst-class:: classref-item-separator
  74. ----
  75. .. _class_MobileVRInterface_property_iod:
  76. .. rst-class:: classref-property
  77. :ref:`float<class_float>` **iod** = ``6.0``
  78. .. rst-class:: classref-property-setget
  79. - void **set_iod** **(** :ref:`float<class_float>` value **)**
  80. - :ref:`float<class_float>` **get_iod** **(** **)**
  81. The interocular distance, also known as the interpupillary distance. The distance between the pupils of the left and right eye.
  82. .. rst-class:: classref-item-separator
  83. ----
  84. .. _class_MobileVRInterface_property_k1:
  85. .. rst-class:: classref-property
  86. :ref:`float<class_float>` **k1** = ``0.215``
  87. .. rst-class:: classref-property-setget
  88. - void **set_k1** **(** :ref:`float<class_float>` value **)**
  89. - :ref:`float<class_float>` **get_k1** **(** **)**
  90. The k1 lens factor is one of the two constants that define the strength of the lens used and directly influences the lens distortion effect.
  91. .. rst-class:: classref-item-separator
  92. ----
  93. .. _class_MobileVRInterface_property_k2:
  94. .. rst-class:: classref-property
  95. :ref:`float<class_float>` **k2** = ``0.215``
  96. .. rst-class:: classref-property-setget
  97. - void **set_k2** **(** :ref:`float<class_float>` value **)**
  98. - :ref:`float<class_float>` **get_k2** **(** **)**
  99. The k2 lens factor, see k1.
  100. .. rst-class:: classref-item-separator
  101. ----
  102. .. _class_MobileVRInterface_property_oversample:
  103. .. rst-class:: classref-property
  104. :ref:`float<class_float>` **oversample** = ``1.5``
  105. .. rst-class:: classref-property-setget
  106. - void **set_oversample** **(** :ref:`float<class_float>` value **)**
  107. - :ref:`float<class_float>` **get_oversample** **(** **)**
  108. The oversample setting. Because of the lens distortion we have to render our buffers at a higher resolution then the screen can natively handle. A value between 1.5 and 2.0 often provides good results but at the cost of performance.
  109. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  110. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  111. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  112. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  113. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  114. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  115. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`