CapersProject/Assets/AllIn1VfxToolkit/Demo & Assets/Textures Demo/Scripts/All1VfxDemoTextureCollection.cs

11 lines
359 B
C#
Raw Normal View History

using UnityEngine;
namespace AllIn1VfxToolkit.DemoAssets.TexturesDemo.Scripts
{
[CreateAssetMenu(fileName = "All1VfxDemoTextureCollection", menuName = "AllIn1Vfx/DemoTextureCollection")]
public class All1VfxDemoTextureCollection : ScriptableObject
{
public string collectionName;
public Texture[] demoTextureCollection;
}
}