Bring in AAC!

project ive been working on for a while, just felt confident enough to move it here
This commit is contained in:
Lillith Rose 2025-12-09 21:40:28 -05:00
parent e608e2a56b
commit 1d7052a258
209 changed files with 1561 additions and 74738 deletions

View file

@ -0,0 +1,23 @@
using gay.lilyy.aaccore;
using UnityEditor;
namespace gay.lilyy.avatarname.version.aac {
[InitializeOnLoad]
public class Template : LayerGroup
{
// remove when ready for uploaded
public override bool experimental => true;
private static readonly Template _instance = new();
static Template() {}
public override string DisplayName => "Template";
public override string SystemName => "template";
public override void Run(AACAssets assets)
{
Logger.LogInfo("LayerGroup Template.Run() Called!");
}
}
}