Unity Project

This commit is contained in:
2026-02-18 09:38:08 +01:00
parent 555115d086
commit f8d0d83476
128 changed files with 119468 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
using UnityEngine;
public class LerpDemo : MonoBehaviour
{
public Transform Target;
void Start()
{
}
// Update is called once per frame
void Update()
{
//transform.position = Target.position;
transform.position = Vector3.Lerp(transform.position, Target.position, Time.deltaTime);
}
}