This commit is contained in:
2025-11-20 12:06:42 +08:00
parent 388fbe743e
commit 7936419eec
566 changed files with 130934 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
using UnityEngine;
namespace Cinemachine.Examples
{
/// <summary>
/// Moves transform between minY and maxY with the specified speed.
/// </summary>
public class SimpleElevator : MonoBehaviour
{
public float minY, maxY;
public float speed;
public bool on;
float m_Direction = 1;
Rigidbody rb;
private void Start()
{
rb = GetComponent<Rigidbody>();
rb.interpolation = RigidbodyInterpolation.Interpolate;
}
void FixedUpdate()
{
if (transform.position.y < minY)
{
m_Direction = 1f;
}
if (transform.position.y > maxY)
{
m_Direction = -1f;
}
var dir = new Vector3(0, m_Direction * speed * Time.fixedDeltaTime, 0);
rb.MovePosition(rb.position += dir);
}
}
}