Advertisement
AlexG2230954

Untitled

Jun 22nd, 2022
1,028
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.63 KB | None | 0 0
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4.  
  5. public class Spawner : MonoBehaviour
  6. {
  7.     public int spawnInterval; // раз в сколько кадров создаем трубу
  8.     public Vector3 spawnPosition; // в каком месте спавним трубу
  9.     public GameObject pipePrefab; // что создаем
  10.  
  11.     int timer = 0; // счетчик
  12.  
  13.     void FixedUpdate()
  14.     {
  15.         timer += 1;
  16.  
  17.         if(timer >= spawnInterval)
  18.         {
  19.             timer = 0;
  20.             Instantiate(pipePrefab, spawnPosition, pipePrefab.transform.rotation);
  21.         }
  22.     }
  23. }
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement