2025-09-21 07:35:17 +00:00
|
|
|
using Godot;
|
|
|
|
using System.Reflection;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace Rokojori
|
|
|
|
{
|
|
|
|
[Tool]
|
|
|
|
[GlobalClass]
|
2025-09-26 12:00:59 +00:00
|
|
|
public abstract partial class UVSource:ShaderGenerationModule
|
2025-09-21 07:35:17 +00:00
|
|
|
{
|
|
|
|
public abstract List<ShaderCode> GetUV( ShaderGenerationContext context, string target, int offsetIndex );
|
|
|
|
}
|
|
|
|
}
|