AlexG2230954

Flappy Bird. Спавнер труб

Jun 20th, 2022 (edited)
339
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.48 KB | None | 0 0
  1. // код спавнера
  2.  
  3. public int spawnInterval; // раз в сколько тактов спавним трубу
  4. public GameObject pipePrefab; // префаб трубы
  5. public Vector3 spawnPosition; // в каком месте спавнить трубы
  6.  
  7. int timer = 0; // счетчик
  8.  
  9. void FixedUpdate()
  10. {
  11.     timer++;
  12.    
  13.     if(timer >= spawnInterval)
  14.     {
  15.         Instantiate(pipePrefab, spawnPosition, pipePrefab.transform.position);
  16.         timer = 0;
  17.     }
  18. }
Add Comment
Please, Sign In to add comment