Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // скрипт самой трубы
- public float speed; // скорость передвижения трубы
- Transform pipeTransform; // здесь лежит компонент Transform трубы
- void Start()
- {
- pipeTransform = GetComponent<Transform>();
- Destroy(gameObject, 10);
- }
- void Update()
- {
- pipeTransform.position += new Vector3(speed, 0, 0);
- }
Add Comment
Please, Sign In to add comment