Answers for "unity rotate around axis"

C#
4

rotatearound unity

using UnityEngine;//Attach this script to a GameObject to rotate around the target position.
public class Example : MonoBehaviour
{
    private Vector3 target = new Vector3(5.0f, 0.0f, 0.0f);    void Update()
    {
        // Spin the object around the world origin at 20 degrees/second.
        transform.RotateAround(target, Vector3.up, 30 * Time.deltaTime);
    }
}
Posted by: Guest on April-19-2020
1

how to rotate object in unity only on one axis

// If you want the obj to rotate on only one axis do this

// Create vector3
Vector3 target_position = new Vector3(transform.position.x,
                                                target.position.y,
                                                transform.position.z);
// give the target_position to transform.LookAt

transform.LookAt(target_position);
Posted by: Guest on April-16-2021
1

rotation around own axis in unity

transform.RotateAround(transform.position, transform.up, Time.deltaTime * 90f);
Posted by: Guest on March-19-2020
1

unity rotate around axis

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

C# Answers by Framework

Browse Popular Code Answers by Language