2024-09-14 06:41:52 +00:00
|
|
|
|
|
|
|
using Godot;
|
|
|
|
using Rokojori;
|
|
|
|
|
|
|
|
namespace Rokojori
|
|
|
|
{
|
|
|
|
|
|
|
|
[Tool]
|
|
|
|
[GlobalClass]
|
|
|
|
public partial class TransitionSettings:Resource
|
|
|
|
{
|
|
|
|
[Export]
|
|
|
|
public float duration;
|
|
|
|
|
|
|
|
[Export]
|
|
|
|
public Curve curve;
|
|
|
|
|
|
|
|
[Export]
|
2025-01-08 18:46:17 +00:00
|
|
|
public TimeLine timeLine;
|
2024-09-14 06:41:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|