fix collision system, ladders, and enemy AI

This commit is contained in:
Vova
2023-07-21 14:55:39 +03:00
parent 5849bcd270
commit 83c44a51a5
8 changed files with 1338 additions and 278 deletions
+2
View File
@@ -1,4 +1,5 @@
using UnityEngine;
using UnityEngine.UIElements;
public class MapElement : MonoBehaviour, IMapElement
{
@@ -7,6 +8,7 @@ public class MapElement : MonoBehaviour, IMapElement
public MapElementSO ElementSO => _elementSO;
public bool IsEnabled { get; set; } = true;
public Transform GlobalTransform { get; set; }
public virtual void Hit()
{