rj-action-library/Runtime/Shading/Generators/Spatial/Stencil/StencilIndexReference.cs

20 lines
307 B
C#
Raw Normal View History

2025-09-17 08:25:03 +00:00
using Godot;
using System.Reflection;
using System.Collections.Generic;
namespace Rokojori
{
[Tool]
[GlobalClass]
public partial class StencilIndexReference:StencilReference
{
[Export]
public int index;
public override int GetReferenceIndex()
{
return index;
}
}
}