Initial commit: Unity project setup

This commit is contained in:
2026-03-25 16:26:24 +01:00
parent ba777e3fe6
commit c2c08569d4
61 changed files with 6743 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
using UnityEngine;
public class CameraFollow : MonoBehaviour {
public GameObject player;
private Vector3 offset;
void Start() {
offset = transform.position;
}
void LateUpdate() {
transform.position = player.transform.position + offset;
}
}