RemoteVoicePositionInfo

Spatial position information of a remote user or media player.

public class RemoteVoicePositionInfo
    {
        public RemoteVoicePositionInfo(float[] position, float[] forward)
        {
            this.position = position;
            this.forward = forward;
        }
        public float[] position { set; get; }
        public float[] forward { set; get; }
    };

Properties

position
Coordinates in the world coordinate system. This parameter is an array of length 3, with the three values representing the coordinates of the forward, right, and up directions, respectively. Forward, right, and up correspond to the positive directions of the z, x, and y axes of Unity's Vector3.
forward
Unit vector of the forward axis in the world coordinate system. This parameter is an array of length 3, with the three values representing the coordinates of the forward, right, and up directions, respectively. Forward, right, and up correspond to the positive directions of the z, x, and y axes of Unity's Vector3.