Initial Commit
This commit is contained in:
parent
9089cf343f
commit
accf7e787f
20 changed files with 623 additions and 0 deletions
21
Template/Layer.cs
Normal file
21
Template/Layer.cs
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
using UnityEditor;
|
||||
|
||||
namespace gay.lilyy.SoldAvatarBootstrap.Template
|
||||
{
|
||||
[InitializeOnLoad]
|
||||
public class TemplateLayer : LayerGroup
|
||||
{
|
||||
private static readonly TemplateLayer _instance = new();
|
||||
|
||||
static TemplateLayer() { }
|
||||
|
||||
public override string DisplayName => "Template";
|
||||
|
||||
public override string SystemName => "template";
|
||||
public override AvatarDefinition[] TargetDefinitions => new[] { TemplateDefinition.Instance };
|
||||
public override void Run(AvatarAssets assets)
|
||||
{
|
||||
Logger.LogInfo("LayerGroup Template.Run() Called!");
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue