diff options
author | Bastiaan Olij <mux213@gmail.com> | 2023-03-13 12:26:10 +1100 |
---|---|---|
committer | Bastiaan Olij <mux213@gmail.com> | 2023-03-15 13:11:48 +1100 |
commit | e31c2e42774f0b56608662f239a32f7734513a99 (patch) | |
tree | 78b91f39cd216580746724b5ffdb7751d0ea1074 /modules/openxr/openxr_interface.h | |
parent | 550a7798510810d238b733a54f69da71b2a2d152 (diff) | |
download | redot-engine-e31c2e42774f0b56608662f239a32f7734513a99.tar.gz |
Add a get_system_info method to XRInterface
Diffstat (limited to 'modules/openxr/openxr_interface.h')
-rw-r--r-- | modules/openxr/openxr_interface.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/openxr/openxr_interface.h b/modules/openxr/openxr_interface.h index 40ee95f02f..de758a8c2d 100644 --- a/modules/openxr/openxr_interface.h +++ b/modules/openxr/openxr_interface.h @@ -112,6 +112,7 @@ public: virtual bool is_initialized() const override; virtual bool initialize() override; virtual void uninitialize() override; + virtual Dictionary get_system_info() override; virtual void trigger_haptic_pulse(const String &p_action_name, const StringName &p_tracker_name, double p_frequency, double p_amplitude, double p_duration_sec, double p_delay_sec = 0) override; |