2026-04-07 스킬 시스템 진행중

This commit is contained in:
2026-04-07 18:05:40 +09:00
parent 42f92020c7
commit 0844a07902
1283 changed files with 71803 additions and 6 deletions

View File

@@ -28,6 +28,9 @@ public class SkillData : ScriptableObject
[Header("이펙트")]
public GameObject EffectPrefab;
[Header("범위 지정 (AreaSelect용)")]
public GameObject AreaIndicatorPrefab;
[Header("레벨별 수치")]
public SkillLevelData[] Levels;
@@ -50,5 +53,5 @@ public class SkillLevelData
}
public enum SkillType { Active, Passive }
public enum ActivationType { Instant, Charge }
public enum ActivationType { Instant, Charge, AreaSelect }
public enum TargetType { Self, Single, Area, Projectile }