using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; using UnityEngine.SceneManagement; public class demo : MonoBehaviour { // Start is called before the first frame update void Start() { print("hi,there");//用户输入 } // Update is called once per frame void Update() { transform.Rotate(0, 1, 0); } }