feat(project): refresh sample scenes and Nahida assets

This commit is contained in:
2026-04-19 00:29:32 +08:00
parent f4fef59b2f
commit 1405ef6a29
59 changed files with 432 additions and 2614 deletions

View File

@@ -0,0 +1,14 @@
using XCEngine;
namespace ProjectScripts
{
public sealed class RotateProbe : MonoBehaviour
{
public float rotateSpeed = 90f;
void Update()
{
transform.Rotate(new Vector3(0f, 1f, 0f), rotateSpeed * Time.deltaTime, Space.Self);
}
}
}