1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-15 13:51:40 +00:00

Change ARVRPositionalTracker to a reference and better expose it to GDNative

This commit is contained in:
Bastiaan Olij
2021-03-29 21:07:48 +11:00
parent 92b27e4944
commit 4cce36e35d
10 changed files with 103 additions and 52 deletions

View File

@@ -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 ARVRPositionalTracker *get_controller(int p_controller_id) const = 0;
virtual Ref<ARVRPositionalTracker> get_controller(int p_controller_id) const = 0;
virtual String get_visibility_state() const = 0;
virtual PoolVector3Array get_bounds_geometry() const = 0;
};