rj-action-library/Runtime/Animation/Smoothing/FrameSmoothingTableGenerato...

30 lines
459 B
C#
Raw Normal View History

2025-01-16 07:20:32 +00:00
using System.Collections;
using System.Collections.Generic;
using Godot;
namespace Rokojori
{
[Tool]
[GlobalClass]
public partial class FrameSmoothingTableGenerator:Node
{
[Export]
public string path;
[Export]
public bool compute
{
get { return false; }
set
{
if ( ! value )
{
return;
}
FrameSmoothingTable.ComputeAndSaveTable( path );
}
}
}
}