Answers for "unity set position around a point"

C#
1

unity rotate around pivot c#

public Transform customPivot;

void Update()
{
    transform.RotateAround(customPivot.position, Vector3.up, 20 * Time.deltaTime);
}
Posted by: Guest on August-03-2020
0

unity rotate around point

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

Code answers related to "unity set position around a point"

C# Answers by Framework

Browse Popular Code Answers by Language