mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-09 14:15:55 +00:00
22 lines
No EOL
471 B
C#
22 lines
No EOL
471 B
C#
using GTweens.Easings;
|
|
using GTweens.Enums;
|
|
|
|
namespace GTweens.TweenBehaviours;
|
|
|
|
public interface ITweenBehaviour
|
|
{
|
|
float GetDuration();
|
|
float GetElapsed();
|
|
float GetRemaining();
|
|
bool GetLoopable();
|
|
|
|
void Start(bool isCompletingInstantly);
|
|
void Tick(float deltaTime);
|
|
void Kill();
|
|
void Complete();
|
|
void Reset(bool kill, ResetMode loopResetMode);
|
|
|
|
void SetEasing(EasingDelegate easingFunction);
|
|
|
|
bool GetFinished();
|
|
} |