Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseFor some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
CloseRotates the transform about axis
passing through point
in world coordinates by angle
degrees.
This modifies both the position and the rotation of the transform.
using UnityEngine;
//Attach this script to a GameObject to rotate around the target position. public class Example : MonoBehaviour { //Assign a GameObject in the Inspector to rotate around public GameObject target;
void Update() { // Spin the object around the target at 20 degrees/second. transform.RotateAround(target.transform.position, Vector3.up, 20 * Time.deltaTime); } }