mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-14 23:33:48 +00:00
25 lines
No EOL
553 B
C#
25 lines
No EOL
553 B
C#
using GTweens.Easings;
|
|
using GTweens.Enums;
|
|
|
|
namespace GTweens.Tweeners
|
|
{
|
|
public interface ITweener
|
|
{
|
|
float Duration { get; }
|
|
float Elapsed { get; }
|
|
float Remaining { get; }
|
|
|
|
bool IsPlaying { get; }
|
|
bool IsCompleted { get; }
|
|
bool IsKilled { get; }
|
|
bool IsCompletedOrKilled { get; }
|
|
|
|
void SetEasing(EasingDelegate easingFunction);
|
|
|
|
void Reset(ResetMode mode);
|
|
void Start();
|
|
void Tick(float deltaTime);
|
|
void Complete();
|
|
void Kill();
|
|
}
|
|
} |