UnityEngine.ClusterInput.SetTrackerRotation C# (CSharp) Method

SetTrackerRotation() public static method

Sets the tracker rotation for this input. Only works for input typed Custom.

public static SetTrackerRotation ( string name, Quaternion value ) : void
name string Name of input to modify.
value Quaternion Value to set.
return void
        public static void SetTrackerRotation(string name, Quaternion value)
        {
            INTERNAL_CALL_SetTrackerRotation(name, ref value);
        }
    }