placeholder-tracker/addons/placeholder_tracker/PtExportPlugin.cs
2025-02-01 07:45:07 +03:00

34 lines
No EOL
727 B
C#

#if TOOLS
using Godot;
using System.ComponentModel;
namespace PT;
[Tool]
public partial class PtExportPlugin : EditorExportPlugin
{
public override string _GetName()
{
return "Placeholder Tracker";
}
public override void _ExportFile(string path, string type, string[] features)
{
GD.PushWarning("TODO: warn user when a placeholder is encountered");
if (path.EndsWith(PlaceholderTracker.TODO_EXTENSION))
{
GD.PushWarning("TODO: encountered a .TODO file");
Skip();
return;
}
if (PlaceholderTracker.IsFilePlaceholder(path))
{
GD.PushWarning("TODO: found a placeholder!");
}
}
}
#endif