| 1234567891011121314151617181920 |
- 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;
- public UnityEngine.Vector3 EnemyPosition;
- }
- }
|