Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class SawScript : MonoBehaviour {
- public float speed = 2f; // швидкість обертання
- public bool direction = true; // напрямок обертання
- void FixedUpdate() {
- transform.Rotate(0f, 0f, speed * (direction ? 1 : -1)); // повертаємо об'єкт через його трансформу
- }
- }
Add Comment
Please, Sign In to add comment