소스 검색

automated Coin Placement (untested)

lisa 3 년 전
부모
커밋
244d913724
3개의 변경된 파일280개의 추가작업 그리고 90개의 파일을 삭제
  1. 0 3
      Assets/Coin/CoinCollection.cs
  2. 279 87
      Assets/Scenes/MainScene.unity
  3. 1 0
      ProjectSettings/TagManager.asset

+ 0 - 3
Assets/Coin/CoinCollection.cs

@@ -12,7 +12,6 @@ public class CoinCollection : MonoBehaviour
     void Start()
     {
         coinPool = GameObject.FindGameObjectWithTag("CoinPool").GetComponent<CoinPool>();
-        spawn = GameObject.FindGameObjectWithTag("Route").GetComponent<CoinCreation>();
     }
 
     // Update is called once per frame
@@ -32,8 +31,6 @@ public class CoinCollection : MonoBehaviour
             var bike = other.gameObject;
             bike.GetComponent<PlayerStats>().IncreaseCoinCounter();
             coinPool.ReturnToPool(gameObject);
-            //sobald ein coin eingesammelt einen neuen erstellen/platzieren
-            spawn.UpdateCoins();
         }
     }
 }

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 279 - 87
Assets/Scenes/MainScene.unity


+ 1 - 0
ProjectSettings/TagManager.asset

@@ -12,6 +12,7 @@ TagManager:
   - street_uneven
   - HMDTracker
   - CoinPool
+  - Route
   layers:
   - Default
   - TransparentFX

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.