Add travel map flow and update docs

This commit is contained in:
jongjae0305
2026-06-24 15:34:09 +09:00
parent 8561fab0a2
commit af26dd4311
37 changed files with 3114 additions and 165 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ public class MileagePickup : MonoBehaviour
private void OnTriggerEnter2D(Collider2D other)
{
if(collected || !other.CompareTag("Player"))
if(collected || !other.CompareTag("Player") || !GameFlowManager.IsGameplayActive)
{
return;
}