2023-04-01 18:07:22 +08:00
|
|
|
using SHADE;
|
2023-02-27 07:32:26 +08:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Text;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
namespace SHADE_Scripting.UI
|
|
|
|
{
|
2023-03-31 15:02:31 +08:00
|
|
|
public class ScaleBounce : Script
|
|
|
|
{
|
|
|
|
[NonSerialized]
|
|
|
|
private TweenThread thread;
|
2023-02-27 07:32:26 +08:00
|
|
|
|
2023-03-31 15:02:31 +08:00
|
|
|
public float minScale = 1.0f;
|
|
|
|
public float maxScale = 1.2f;
|
|
|
|
public float duration = 1.0f;
|
2023-02-27 07:32:26 +08:00
|
|
|
|
2023-03-31 15:02:31 +08:00
|
|
|
private Vector3 defaultScale;
|
2023-02-27 07:32:26 +08:00
|
|
|
|
|
|
|
|
2023-03-31 15:02:31 +08:00
|
|
|
public bool isActive = false;
|
|
|
|
|
|
|
|
private bool lastActive = false;
|
2023-03-31 14:50:25 +08:00
|
|
|
|
2023-04-01 16:30:33 +08:00
|
|
|
protected override void start()
|
|
|
|
{
|
|
|
|
thread = TweenManager.CreateTweenThread(duration, minScale, maxScale, EASING_METHOD.EASE_IN_SINE);
|
|
|
|
Transform trans = GetComponent<Transform>();
|
|
|
|
if (trans != null)
|
|
|
|
{
|
|
|
|
defaultScale = trans.LocalScale;
|
|
|
|
}
|
|
|
|
}
|
2023-02-27 07:32:26 +08:00
|
|
|
|
2023-04-01 16:30:33 +08:00
|
|
|
protected override void update()
|
|
|
|
{
|
|
|
|
|
|
|
|
if (thread == null)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (isActive != lastActive && isActive == true)
|
|
|
|
{
|
|
|
|
thread.Reset();
|
|
|
|
}
|
|
|
|
lastActive = isActive;
|
|
|
|
|
|
|
|
Transform trans = GetComponent<Transform>();
|
|
|
|
if (trans != null && isActive)
|
|
|
|
{
|
|
|
|
trans.LocalScale = defaultScale * thread.GetValue();
|
|
|
|
}
|
|
|
|
if (thread.IsCompleted())
|
|
|
|
{
|
|
|
|
thread.ResetInvert();
|
|
|
|
}
|
2023-02-27 07:32:26 +08:00
|
|
|
}
|
2023-04-01 16:30:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
}
|
2023-02-27 07:32:26 +08:00
|
|
|
}
|