驱蚊app
您不能選擇超過 %s 個話題 話題必須以字母或數字為開頭,可包含連接號 ('-') 且最長為 35 個字
 
 
 
 
 

20 行
250 B

  1. using UnityEngine;
  2. using System.Collections;
  3. public class Rotate : MonoBehaviour
  4. {
  5. Vector3 angle;
  6. void Start()
  7. {
  8. angle = transform.eulerAngles;
  9. }
  10. void Update()
  11. {
  12. angle.y += Time.deltaTime * 100;
  13. transform.eulerAngles = angle;
  14. }
  15. }