1
0
mirror of https://projects.caleb-brown.dev/UDRI-XRT/UDRIGEEKCup2024.git synced 2025-01-22 07:08:51 -05:00
UDRIGEEKCup2024/Assets/Portraits/CopyRotation.cs
2024-04-23 13:47:11 -04:00

16 lines
286 B
C#

using UnityEngine;
namespace MAVRIC.GEEKCup.Portraits
{
public class CopyRotation : MonoBehaviour
{
public Transform source;
// Update is called once per frame
void Update()
{
transform.rotation = source.rotation;
}
}
}