Initial commit of ongoing work

This commit is contained in:
Alex Stewart
2024-10-28 19:48:45 -07:00
parent 63aed8ab7c
commit 8a3b2a0206
40 changed files with 3448 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class CameraTracking : MonoBehaviour
{
[SerializeField] GameObject tracked;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
transform.position = tracked.transform.position;
}
}