크립 캠프의 모든 크립 처치 시 획득 가능한 자원이 소환되도록 함

This commit is contained in:
2026-02-16 16:31:46 +09:00
parent 3e026d3319
commit 95db5ce4f3
3 changed files with 133 additions and 5 deletions

View File

@@ -567,11 +567,10 @@ namespace Northbound
private Vector3 GetRandomPositionInPlayableArea()
{
Vector3 center = transform.position;
float x = Random.Range(-playableAreaWidth / 2f, playableAreaWidth / 2f);
float z = Random.Range(startZ, endZ);
Vector3 result = new Vector3(x, center.y, z);
Vector3 result = new Vector3(x, 1, z);
return result;
}