Firstborn/Library/PackageCache/com.unity.visualscripting@1.../Editor/VisualScripting.State/Plugin/BoltStateResources.cs
Schaken-Mods 9092858a58 updated to the latest editor
I updated everything to the latest Unity Editor. Also realized I had the wrong shaders on my hairs, those are fixed and the hairs look MUCH better!
2023-05-07 17:43:11 -05:00

37 lines
918 B
C#

namespace Unity.VisualScripting
{
[Plugin(BoltState.ID)]
public sealed class BoltStateResources : PluginResources
{
private BoltStateResources(BoltState plugin) : base(plugin)
{
icons = new Icons(this);
}
public Icons icons { get; private set; }
public override void LateInitialize()
{
icons.Load();
}
public class Icons
{
public Icons(BoltStateResources resources)
{
this.resources = resources;
}
private readonly BoltStateResources resources;
public EditorTexture graph { get; private set; }
public EditorTexture state { get; private set; }
public void Load()
{
graph = typeof(StateGraph).Icon();
state = typeof(State).Icon();
}
}
}
}