This commit is contained in:
2024-10-16 00:03:41 +08:00
commit 897058435c
5033 changed files with 1009728 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
using UnityEngine;
using System.Collections;
public class Rotate : MonoBehaviour
{
Vector3 angle;
void Start()
{
this.angle = this.transform.eulerAngles;
}
void Update()
{
this.angle.y += Time.deltaTime * 100;
this.transform.eulerAngles = this.angle;
}
}