MonsterBase 및 StateMachine 코드 정리

This commit is contained in:
Mingu Kim
2025-02-18 00:55:23 +09:00
parent f75712a330
commit 41234e3e97
9 changed files with 87 additions and 291 deletions

View File

@@ -21,8 +21,10 @@ namespace TON
public int attackPower;
// 기본 방어력
public int defencePower;
// 몬스터 스킬 ID
// 몬스터 스킬 ID 1
public int monsterSkillID;
// 몬스터 스킬 ID 2
public int monsterSkillIDTwo;
// 패트롤 범위
public float patrolRange;
// 인식 범위

View File

@@ -12,6 +12,6 @@ namespace TON
public float damage; // 스킬 데미지
public float cooldown; // 스킬 쿨다운
public float range; // 스킬 범위
public string animationName; // 스킬 애니메이션 이름
public string prefabName; // 스킬 프리팹 이름
}
}