mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 09:45:33 +00:00
19 lines
365 B
C#
19 lines
365 B
C#
using Godot;
|
|
|
|
namespace Cirno.Scripts.Resources;
|
|
|
|
[GlobalClass]
|
|
public partial class TimeModifier : Resource
|
|
{
|
|
[Export] public float TimeInSeconds = 1f;
|
|
[Export] public TimeModifierType ModifierType;
|
|
[Export] public float Value;
|
|
public bool Applied = false;
|
|
}
|
|
|
|
public enum TimeModifierType
|
|
{
|
|
SpeedChange,
|
|
RotationChange,
|
|
FacePlayer
|
|
}
|