[Add] All in one shader

This commit is contained in:
2026-02-23 22:01:07 +07:00
parent ec0aa86ac2
commit 4f942cd7c0
806 changed files with 401510 additions and 33 deletions
@@ -0,0 +1,25 @@
namespace AllIn13DShader
{
public struct EffectAttributeData
{
public string effectID;
public string groupID;
public string drawerID;
public string incompatibleWithEffectID;
public string dependentEffectID;
public bool docEnabled;
public string[] extraPasses;
public void Init()
{
this.effectID = string.Empty;
this.groupID = string.Empty;
this.drawerID = string.Empty;
this.incompatibleWithEffectID = string.Empty;
this.dependentEffectID = string.Empty;
this.docEnabled = false;
this.extraPasses = new string[0];
}
}
}