타워 건설 로직 및 구조 변경

타워 건설 시 바닥과의 높이 정렬을 코드로 자동화 함
타워 건설 시 프로그레스 바가 타워 크기에 영향을 받지 않도록 함
프로그레스 바를 직사각형으로 변경
This commit is contained in:
2026-01-15 14:54:51 +09:00
parent ea9b357399
commit f83d5d234b
16 changed files with 2413 additions and 2824 deletions

View File

@@ -19,9 +19,6 @@ public class ConstructionSite : MonoBehaviour
_buildTime = time;
_size = size; // 사이즈 저장
// 토대 자체의 크기 조절 (BuildManager에서 해도 되지만 여기서 하면 더 확실합니다)
transform.localScale = new Vector3(size.x, 1f, size.y);
// UI 생성 및 초기화
if (uiPrefab != null)
{