13 lines
305 B
C#
13 lines
305 B
C#
using Godot;
|
|
using System.Reflection;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Rokojori
|
|
{
|
|
[Tool]
|
|
[GlobalClass]
|
|
public abstract partial class UVSource:ShaderGenerationModule
|
|
{
|
|
public abstract List<ShaderCode> GetUV( ShaderGenerationContext context, string target, int offsetIndex );
|
|
}
|
|
} |