rj-action-library/Runtime/Rendering/StencilLayer.cs

18 lines
266 B
C#
Raw Normal View History

2025-09-17 08:25:03 +00:00
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using System;
using Godot;
namespace Rokojori
{
[Tool]
[GlobalClass]
public partial class StencilLayer:Resource
{
[Export]
public int fallBackIndex = 0;
}
}