11 lines
201 B
C#
11 lines
201 B
C#
using DG.Tweening;
|
|
using UnityEngine;
|
|
|
|
namespace EnglewoodLAB
|
|
{
|
|
public class MovePoint : MonoBehaviour
|
|
{
|
|
public Ease easeType = Ease.InOutSine;
|
|
public float speed = -1f;
|
|
}
|
|
} |