diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2020-04-15 15:22:14 -0400 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2020-12-04 18:59:02 -0500 |
commit | 888deca8272ab10e0eb415fd27dd8413b56ca83e (patch) | |
tree | 6654e62a28aa132eb707f90b4a29b905a93ae958 /doc | |
parent | 14660ee3999dae512f23164d5ffc570e6a978642 (diff) |
Rename XR get_type and get_name
Now called get_tracker_type and get_tracker_name
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/XRPositionalTracker.xml | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/doc/classes/XRPositionalTracker.xml b/doc/classes/XRPositionalTracker.xml index 0b57c9478f..5ed7a26b19 100644 --- a/doc/classes/XRPositionalTracker.xml +++ b/doc/classes/XRPositionalTracker.xml @@ -33,13 +33,6 @@ Returns the mesh related to a controller or anchor point if one is available. </description> </method> - <method name="get_name" qualifiers="const"> - <return type="StringName"> - </return> - <description> - Returns the controller or anchor point's name if available. - </description> - </method> <method name="get_orientation" qualifiers="const"> <return type="Basis"> </return> @@ -61,6 +54,20 @@ 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 [XRController3D] and [XRAnchor3D] nodes. </description> </method> + <method name="get_tracker_name" qualifiers="const"> + <return type="StringName"> + </return> + <description> + Returns the controller or anchor point's name, if applicable. + </description> + </method> + <method name="get_tracker_type" qualifiers="const"> + <return type="int" enum="XRServer.TrackerType"> + </return> + <description> + Returns the tracker's type, which will be one of the values from the [enum XRServer.TrackerType] enum. + </description> + </method> <method name="get_tracks_orientation" qualifiers="const"> <return type="bool"> </return> @@ -84,13 +91,6 @@ Returns the transform combining this device's orientation and position. </description> </method> - <method name="get_type" qualifiers="const"> - <return type="int" enum="XRServer.TrackerType"> - </return> - <description> - Returns the tracker's type. - </description> - </method> </methods> <members> <member name="rumble" type="float" setter="set_rumble" getter="get_rumble" default="0.0"> |