Esempio n. 1
0
        protected override bool TryGetUnscaledPose(ref Pose pose)
        {
            Matrix4x4 matrix = NativeInterface.GetCameraPose();

            pose.position = UnityARMatrixOps.GetPosition(matrix);
            pose.rotation = UnityARMatrixOps.GetRotation(matrix);

            return(true);
        }