Answers for "rotate objects around point unity"

C#
3

unity how to rotate something to point to something else

Vector3 dir = target.position - transform.position;
Quaternion lookRotation = Quaternion.LookRotation(dir);
Vector3 rotation = Quaternion.Lerp(partToRotate.rotation, lookRotation, Time.deltaTime * turnSpeed).eulerAngles;
partToRotate.rotation = Quaternion.Euler(0f, rotation.y, 0f);
Posted by: Guest on March-18-2020
0

unity rotate around point

transform.RotateAround(point, axis, degrees);
Posted by: Guest on June-08-2020

Code answers related to "rotate objects around point unity"

C# Answers by Framework

Browse Popular Code Answers by Language