INTERNAL_CALL_GetTrackerPosition() private method

private INTERNAL_CALL_GetTrackerPosition ( string name, Vector3 &value ) : void
name string
value Vector3
return void
Exemplo n.º 1
0
        /// <summary>
        ///   <para>Return the position of a tracker as a Vector3.</para>
        /// </summary>
        /// <param name="name">Name of input to poll.</param>
        public static Vector3 GetTrackerPosition(string name)
        {
            Vector3 result;

            ClusterInput.INTERNAL_CALL_GetTrackerPosition(name, out result);
            return(result);
        }
Exemplo n.º 2
0
        /// <summary>
        ///   <para>Return the position of a tracker as a Vector3.</para>
        /// </summary>
        /// <param name="name">Name of input to poll.</param>
        public static Vector3 GetTrackerPosition(string name)
        {
            Vector3 vector3;

            ClusterInput.INTERNAL_CALL_GetTrackerPosition(name, out vector3);
            return(vector3);
        }