Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // код спавнера
- public int spawnInterval; // раз в сколько тактов спавним трубу
- public GameObject pipePrefab; // префаб трубы
- public Vector3 spawnPosition; // в каком месте спавнить трубы
- int timer = 0; // счетчик
- void FixedUpdate()
- {
- timer++;
- if(timer >= spawnInterval)
- {
- Instantiate(pipePrefab, spawnPosition, pipePrefab.transform.position);
- timer = 0;
- }
- }
Add Comment
Please, Sign In to add comment