+ MiniSandMole 프리팹 추가 + BossConfiguration So에 MiniSandMole 추가 + MiniSandMoleData, MiniSingleRollData So 추가 + MiniSandMole BehaviorTree 추가 + SandMoleMapController 클래스 추가 + ITarget, ICurrentDirection 인터페이스 추가 + Bt Actions - CanSkill, ActivateSkill 로직 변경 + BossHealthPoint 로직 변경 + 미니 모래 두더지에 소환할 때, 죽을 때, 디졸브 효과 추가 Closes #20
9 lines
131 B
C#
9 lines
131 B
C#
using UnityEngine;
|
|
|
|
namespace BlueWater.Interfaces
|
|
{
|
|
public interface ITarget
|
|
{
|
|
Collider Target { get; }
|
|
}
|
|
} |