Firstborn/Library/PackageCache/com.unity.visualscripting@1.../Editor/VisualScripting.Flow/Plugin/BoltFlowManifest.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

14 lines
477 B
C#

namespace Unity.VisualScripting
{
[Plugin(BoltFlow.ID)]
public sealed class BoltFlowManifest : PluginManifest
{
private BoltFlowManifest(BoltFlow plugin) : base(plugin) { }
public override string name => "Visual Scripting Flow";
public override string author => "";
public override string description => "Flow-graph based visual scripting.";
public override SemanticVersion version => PackageVersionUtility.version;
}
}