(Unity)オブジェクトを自動で回転させる 投稿者: monopro2024年2月6日ブログ (スクリプト) using System.Collections; using System.Collections.Generic; using UnityEngine; public class AutoRotate : MonoBehaviour { void Update() { transform.Rotate(new Vector3(0, 10f, 0) * Time.deltaTime); } }