summaryrefslogtreecommitdiffstats
path: root/modules/webxr/webxr_interface.h
diff options
context:
space:
mode:
authorBastiaan Olij <mux213@gmail.com>2021-03-29 21:15:53 +1100
committerBastiaan Olij <mux213@gmail.com>2021-03-29 23:01:47 +1100
commit454c889e616917021379ebff5bde3f458cd68eb2 (patch)
treef2ffcdd0782015404289558d3b39bcd0d9cbcb50 /modules/webxr/webxr_interface.h
parent02471ba44d4b00af51af7bb3061437c6001d2c88 (diff)
downloadredot-engine-454c889e616917021379ebff5bde3f458cd68eb2.tar.gz
Change XRPositionalTracker to a reference and better expose it to GDNative
Diffstat (limited to 'modules/webxr/webxr_interface.h')
-rw-r--r--modules/webxr/webxr_interface.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/webxr/webxr_interface.h b/modules/webxr/webxr_interface.h
index c5b2dc8d73..366235fcd5 100644
--- a/modules/webxr/webxr_interface.h
+++ b/modules/webxr/webxr_interface.h
@@ -57,7 +57,7 @@ public:
virtual void set_requested_reference_space_types(String p_requested_reference_space_types) = 0;
virtual String get_requested_reference_space_types() const = 0;
virtual String get_reference_space_type() const = 0;
- virtual XRPositionalTracker *get_controller(int p_controller_id) const = 0;
+ virtual Ref<XRPositionalTracker> get_controller(int p_controller_id) const = 0;
virtual String get_visibility_state() const = 0;
virtual PackedVector3Array get_bounds_geometry() const = 0;
};