몬스터가 캐릭터 탐지하고 추적할때 캐릭터를 바라보지 않던 문제 수정 및 CSV 코드 제거

This commit is contained in:
Mingu Kim
2025-02-12 16:22:54 +09:00
parent a8ff9955ed
commit 05abc442c9
2 changed files with 94 additions and 156 deletions

View File

@@ -32,20 +32,20 @@ namespace TON
// 공격 범위
public float attackRange;
public MonsterData(int id, string name, int level, string monsterType, int hp, int attackPower, int defensivePower, int monsterSkillID, float patrolRange, float detectionRange, float chaseRange, float attackRange)
public MonsterData(int a, string b, int c, string d, int e, int f, int g, string h, float i, float j, float k, float l)
{
id = id;
name = name;
level = level;
monsterType = monsterType;
hp = hp;
attackPower = attackPower;
defensivePower = defensivePower;
monsterSkillID = monsterSkillID;
patrolRange = patrolRange;
detectionRange = detectionRange;
chaseRange = chaseRange;
attackRange = attackRange;
id = a;
name = b;
level = c;
monsterType = d;
hp = e;
attackPower = f;
defensivePower = g;
monsterSkillID = h;
patrolRange = i;
detectionRange = j;
chaseRange = k;
attackRange = l;
}
}
}