This commit is contained in:
2025-05-14 16:14:32 +08:00
parent 543b38d930
commit 9e4fef3f1e
16 changed files with 358 additions and 27 deletions

17
Assets/Scripts/ArmTest.cs Normal file
View File

@@ -0,0 +1,17 @@
using System;
using UnityEngine;
public class ArmTest : MonoBehaviour
{
public Vector3 target;
private void Start()
{
target = transform.localEulerAngles;
}
private void LateUpdate()
{
transform.localEulerAngles = target;
}
}