making changes to lighting. This is a backup just in case

This commit is contained in:
Ranno Samuel Adson
2024-12-27 14:11:36 +02:00
parent 50bf9bc51b
commit 5df9dacfb5
123 changed files with 4392 additions and 2266591 deletions

View File

@@ -0,0 +1,26 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Waypoint : MonoBehaviour
{
public float DesiredRotation = 0;
public Waypoint Next;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
void OnDrawGizmos()
{
if (Next == null) return;
Gizmos.color = Color.green;
Gizmos.DrawLine(transform.position, Next.transform.position);
}
}