프로젝트 셋팅 수정

This commit is contained in:
2026-01-18 01:06:55 +09:00
parent 6113091e60
commit 078781ff79
7 changed files with 218 additions and 21 deletions

16
Assets/Scripts/Test.cs Normal file
View File

@@ -0,0 +1,16 @@
using UnityEngine;
public class Test : MonoBehaviour
{
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
}
// Update is called once per frame
void Update()
{
transform.Rotate(new Vector3(1.0f, 1.0f, 1.0f));
}
}