rj-action-library/Runtime/Procedural/Textures/TextureCombiner/TextureCombinerStack.cs

17 lines
257 B
C#
Raw Normal View History

2025-02-19 12:12:12 +00:00
using System.Collections;
using System.Collections.Generic;
using Godot;
using System;
namespace Rokojori
{
[Tool]
[GlobalClass]
public partial class TextureCombinerStack:Resource
{
[Export]
public TextureCombinerLayer[] layers;
}
}