Answers for "how to rotate up unity"

C#
5

how to change rotate with script unity

var rotationVector = transform.rotation.eulerAngles;
rotationVector.z = 0;  //this number is the degree of rotation around Z Axis
transform.rotation = Quaternion.Euler(rotationVector);
//if you put this in a coroutine and yielding for some amount of time 
//you can have something like a rotating loading icon
Posted by: Guest on April-19-2020
1

unity 3d camera rotate up and down

public class CamRot : MonoBehaviour
{
    public float rotationSpeed = 50;

    void Update()
    {
        Vector3 rotation = transform.eulerAngles;

        rotation.x -= Input.GetAxis("Mouse Y") * rotationSpeed * Time.deltaTime;

        transform.eulerAngles = rotation;
    }
}
Posted by: Guest on February-18-2021

Code answers related to "how to rotate up unity"

C# Answers by Framework

Browse Popular Code Answers by Language