Answers for "How Unity calculates Transform.forward"

C#
0

How Unity calculates Transform.forward

// The blue axis of the transform in world space.
     public Vector3 forward {
     		get { return rotation * Vector3.forward;
        } set {
        rotation = Quaternion.LookRotation(value);
        }
     }
Posted by: Guest on August-17-2021

C# Answers by Framework

Browse Popular Code Answers by Language