건설 토대 및 상호작용 시스템 추가

This commit is contained in:
2026-01-27 22:50:57 +09:00
parent 805d526b27
commit 387991caab
17 changed files with 1779 additions and 184 deletions

View File

@@ -23,6 +23,18 @@ namespace Northbound
[Tooltip("Can rotate this building?")]
public bool allowRotation = true;
[Header("Construction Settings")]
[Tooltip("건설 완료에 필요한 총 작업량")]
public float requiredWorkAmount = 100f;
[Tooltip("1회 상호작용당 작업량")]
public float workPerInteraction = 10f;
[Tooltip("상호작용 쿨다운 (초)")]
public float interactionCooldown = 1f;
[Tooltip("건설 시 플레이어가 재생할 애니메이션 트리거 (예: Build, Hammer, Construct)")]
public string constructionAnimationTrigger = "Build";
[Tooltip("건설 시 사용할 도구 (선택사항)")]
public InteractionEquipmentData constructionEquipment;
[Header("Health Settings")]
[Tooltip("Maximum health of the building")]
public int maxHealth = 100;