| 123456789101112131415161718 |
- using System.Collections;
- using System.Collections.Generic;
- namespace EnemyAI
- {
- public class Blackboard
- {
- public bool Night
- {
- get;
- set;
- }
- public UnityEngine.AI.NavMeshAgent navMeshAgent;
- public UnityEngine.Vector3 PlayerPosition;
- }
- }
|