Added player task system. simple interaction with objects. Known issue - no player stats canvas
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
using UnityEngine;
|
||||
|
||||
public class BaseInteractableObject : MonoBehaviour
|
||||
{
|
||||
[SerializeField]
|
||||
public Transform _playerArrivePoint;
|
||||
public virtual void Interact()
|
||||
{
|
||||
Debug.Log("Interact with some object");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user