2024-08-17 11:38:26 +00:00
|
|
|
using Nothke.Utils;
|
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
public class SlidingCrane : MonoBehaviour
|
|
|
|
{
|
|
|
|
public InertialInterpolator xMotion = InertialInterpolator.Default();
|
|
|
|
public InertialInterpolator yMotion = InertialInterpolator.Default();
|
|
|
|
|
|
|
|
public Transform xTransform;
|
|
|
|
public Transform yTransform;
|
|
|
|
|
|
|
|
public float yRange = 10;
|
|
|
|
public float xRange = 5;
|
|
|
|
|
2024-08-19 21:07:47 +00:00
|
|
|
[Range(0f, 1f)]
|
|
|
|
public float xStart = 0.5f;
|
|
|
|
|
2024-08-17 12:38:36 +00:00
|
|
|
public Transform testTgt;
|
|
|
|
public Vector3 target;
|
|
|
|
|
2024-08-18 14:11:53 +00:00
|
|
|
public Transform cradleTransform;
|
|
|
|
public Rigidbody cradleRb;
|
2024-08-18 11:21:38 +00:00
|
|
|
|
2024-08-17 14:29:47 +00:00
|
|
|
private void Start()
|
|
|
|
{
|
|
|
|
target = transform.position;
|
2024-08-19 21:07:47 +00:00
|
|
|
xMotion.progress = xStart;
|
2024-08-17 14:29:47 +00:00
|
|
|
}
|
|
|
|
|
2024-08-18 14:11:53 +00:00
|
|
|
void FixedUpdate()
|
2024-08-17 11:38:26 +00:00
|
|
|
{
|
2024-08-17 14:13:26 +00:00
|
|
|
if (testTgt)
|
|
|
|
target = testTgt.position;
|
2024-08-19 21:07:47 +00:00
|
|
|
|
2024-08-17 12:38:36 +00:00
|
|
|
Vector3 localTarget = transform.InverseTransformPoint(target);
|
2024-08-17 14:29:47 +00:00
|
|
|
|
2024-08-17 12:38:36 +00:00
|
|
|
Vector2 targetPlanar = new Vector2(localTarget.x, localTarget.z);
|
|
|
|
|
|
|
|
float xTgt = Mathf.InverseLerp(-xRange, xRange, targetPlanar.x);
|
|
|
|
float yTgt = Mathf.InverseLerp(0, yRange, targetPlanar.y);
|
|
|
|
|
|
|
|
xMotion.AccelerateTo(xTgt);
|
|
|
|
yMotion.AccelerateTo(yTgt);
|
|
|
|
|
|
|
|
float x = Mathf.Lerp(-xRange, xRange, xMotion.progress);
|
2024-08-18 14:32:52 +00:00
|
|
|
float y = yMotion.progress * yRange - 3;
|
2024-08-17 12:38:36 +00:00
|
|
|
|
2024-08-17 14:29:47 +00:00
|
|
|
xMotion.Update(Time.deltaTime);
|
|
|
|
yMotion.Update(Time.deltaTime);
|
|
|
|
|
2024-08-17 11:38:26 +00:00
|
|
|
yTransform.localPosition = new Vector3(0, 0, yMotion.progress * yRange);
|
2024-08-17 12:38:36 +00:00
|
|
|
xTransform.localPosition = new Vector3(x, 0, 0);
|
2024-08-18 14:11:53 +00:00
|
|
|
|
2024-08-18 14:19:17 +00:00
|
|
|
//cradleRb.MovePosition(cradleTransform.position);
|
2024-08-17 11:38:26 +00:00
|
|
|
}
|
|
|
|
}
|