1
0
mirror of https://projects.caleb-brown.dev/UDRI-XRT/UDRIGEEKCup2024.git synced 2025-01-22 15:18:25 -05:00
UDRIGEEKCup2024/Assets/Portraits/CopyRotation.cs

16 lines
286 B
C#
Raw Normal View History

2024-04-23 13:47:11 -04:00
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;
}
}
}