diff options
author | Bastiaan Olij <mux213@gmail.com> | 2022-03-05 21:09:21 +1100 |
---|---|---|
committer | Bastiaan Olij <mux213@gmail.com> | 2022-03-10 17:14:56 +1100 |
commit | d11cb5fe981f96cc1cf4d30c48913e1b3686089e (patch) | |
tree | ccc5c85c8deb09e97e73875cd69f483d7dc0bc38 /modules/openxr/doc_classes | |
parent | 450ebaab9f333ca463e6e57a29fdc2e47c227c36 (diff) |
Adding signals and events to OpenXR interface
Improving interaction profile logic
Diffstat (limited to 'modules/openxr/doc_classes')
-rw-r--r-- | modules/openxr/doc_classes/OpenXRInterface.xml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/modules/openxr/doc_classes/OpenXRInterface.xml b/modules/openxr/doc_classes/OpenXRInterface.xml index 1160061e04..74f708bc95 100644 --- a/modules/openxr/doc_classes/OpenXRInterface.xml +++ b/modules/openxr/doc_classes/OpenXRInterface.xml @@ -10,4 +10,31 @@ <tutorials> <link title="OpenXR documentation">$DOCS_URL/tutorials/vr/openxr/index.html</link> </tutorials> + <signals> + <signal name="pose_recentered"> + <description> + Informs the user queued a recenter of the player position. + </description> + </signal> + <signal name="session_begun"> + <description> + Informs our OpenXR session has been started. + </description> + </signal> + <signal name="session_focussed"> + <description> + Informs our OpenXR session now has focus. + </description> + </signal> + <signal name="session_stopping"> + <description> + Informs our OpenXR session is stopping. + </description> + </signal> + <signal name="session_visible"> + <description> + Informs our OpenXR session is now visible (output is being sent to the HMD). + </description> + </signal> + </signals> </class> |