Answers for "add rotation unity"

C#
1

unity3d quaternion add 90 degrees

//This way you can add a specific of degree (in this case 90 on y) 
//to a specific axis
rotation *= Quaternion.Euler(0, 90, 0);
Posted by: Guest on June-16-2020
1

add rotation unity c#

Vector3 newRotation = new Vector3(0, 10, 0);
transform.eulerAngles = newRotation;
Posted by: Guest on October-16-2021
1

transform.rotation - 90 unity

var lookPos = target.position - transform.position; lookPos.y = 0; var rotation = Quaternion.LookRotation(lookPos); rotation *= Quaternion.Euler(0, 90, 0); // this adds a 90 degrees Y rotation var adjustRotation = transform.rotation.y + rotationAdjust; //<- this is wrong! transform.rotation = Quaternion.Slerp(transform.rotation, rotation, Time.deltaTime * damping);
Posted by: Guest on September-14-2020

C# Answers by Framework

Browse Popular Code Answers by Language