暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Rotate.cs 219B

1234567891011
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class Rotate : MonoBehaviour
  5. {
  6. void Update()
  7. {
  8. transform.Rotate(new Vector3(0f, 10f, 0f) * Time.deltaTime);
  9. }
  10. }