Browse Source

Merge pull request #36596 from BastiaanOlij/add_get_tracker_id

Exposing get_tracker_id for ARVRPositionalTracker to GDScript
Rémi Verschelde 5 years ago
parent
commit
a74895dfdb
2 changed files with 8 additions and 0 deletions
  1. 7 0
      doc/classes/ARVRPositionalTracker.xml
  2. 1 0
      servers/arvr/arvr_positional_tracker.cpp

+ 7 - 0
doc/classes/ARVRPositionalTracker.xml

@@ -54,6 +54,13 @@
 				Returns the world-space controller position.
 			</description>
 		</method>
+		<method name="get_tracker_id" qualifiers="const">
+			<return type="int">
+			</return>
+			<description>
+				Returns the internal tracker ID. This uniquely identifies the tracker per tracker type and matches the ID you need to specify for nodes such as the [ARVRController] and [ARVRAnchor] nodes.
+			</description>
+		</method>
 		<method name="get_tracks_orientation" qualifiers="const">
 			<return type="bool">
 			</return>

+ 1 - 0
servers/arvr/arvr_positional_tracker.cpp

@@ -38,6 +38,7 @@ void ARVRPositionalTracker::_bind_methods() {
 
 	// this class is read only from GDScript, so we only have access to getters..
 	ClassDB::bind_method(D_METHOD("get_type"), &ARVRPositionalTracker::get_type);
+	ClassDB::bind_method(D_METHOD("get_tracker_id"), &ARVRPositionalTracker::get_tracker_id);
 	ClassDB::bind_method(D_METHOD("get_name"), &ARVRPositionalTracker::get_name);
 	ClassDB::bind_method(D_METHOD("get_joy_id"), &ARVRPositionalTracker::get_joy_id);
 	ClassDB::bind_method(D_METHOD("get_tracks_orientation"), &ARVRPositionalTracker::get_tracks_orientation);