Michal saw we were programming with sticks

This commit is contained in:
2025-09-11 13:53:42 +02:00
parent 16c98ee8e3
commit abffb5c558
6 changed files with 210 additions and 344 deletions

View File

@@ -2,10 +2,17 @@ using UnityEngine;
public class Distancemeasurer : MonoBehaviour
{
public float playerDistanceToChange;
public BirdEyesBehavior birdEyes;
private Vector2 eyesPosition;
private Vector2 playerPosition;
private float distance;
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
eyesPosition = transform.position;
playerPosition = transform.position;
}
// Update is called once per frame
@@ -13,4 +20,6 @@ public class Distancemeasurer : MonoBehaviour
{
}
}