You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
415 B
C#
18 lines
415 B
C#
2 months ago
|
/*using D2D.AI.Hunter;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace D2D.AI.Ghost
|
||
|
{
|
||
|
[CreateAssetMenu(fileName = "GhostAISettings", menuName = "SO/GhostAISettings", order = 0)]
|
||
|
public class GhostAISettings : ScriptableObject
|
||
|
{
|
||
|
public UnitMovementSettings movement;
|
||
|
|
||
|
public VisionZone nearHunter;
|
||
|
public VisionZone farHunter;
|
||
|
|
||
|
[Space]
|
||
|
|
||
|
public float observeDelay;
|
||
|
}
|
||
|
}*/
|