AlexG2230954

Flappy Bird. Труба

Jun 20th, 2022 (edited)
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.38 KB | None | 0 0
  1. // скрипт самой трубы
  2. public float speed; // скорость передвижения трубы
  3. Transform pipeTransform; // здесь лежит компонент Transform трубы
  4.  
  5. void Start()
  6. {
  7.     pipeTransform = GetComponent<Transform>();
  8.     Destroy(gameObject, 10);
  9. }
  10.  
  11. void Update()
  12. {
  13.     pipeTransform.position += new Vector3(speed, 0, 0);
  14. }
  15.  
Add Comment
Please, Sign In to add comment