mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
32 lines
891 B
C#
32 lines
891 B
C#
#region
|
|
|
|
using UnityEngine;
|
|
|
|
#endregion
|
|
|
|
namespace NewHorizons.Components
|
|
{
|
|
public class FunnelController : MonoBehaviour
|
|
{
|
|
public AnimationCurve scaleCurve;
|
|
public Transform target;
|
|
public Transform anchor;
|
|
|
|
private void Update()
|
|
{
|
|
// Temporary solution that i will never get rid of
|
|
transform.position = anchor.position;
|
|
|
|
var num = scaleCurve?.Evaluate(TimeLoop.GetMinutesElapsed()) ?? 1f;
|
|
|
|
var dist = (transform.position - target.position).magnitude;
|
|
transform.localScale = new Vector3(num, num, dist / 500f);
|
|
|
|
transform.LookAt(target);
|
|
|
|
// The target or anchor could have been destroyed by a star
|
|
if (!target.gameObject.activeInHierarchy || !anchor.gameObject.activeInHierarchy)
|
|
gameObject.SetActive(false);
|
|
}
|
|
}
|
|
} |