This commit is contained in:
szczuras4
2025-09-22 18:02:22 +02:00
parent 2d8a3b6942
commit 707eb89cf7
13 changed files with 1199 additions and 818 deletions

View File

@@ -0,0 +1,17 @@
using UnityEngine;
using System.Collections.Generic;
[System.Serializable]
public class PrefabGroup
{
public string groupName;
public Color groupColor = new Color(0.3f, 0.3f, 0.3f, 1f);
public bool useLightText = true;
public List<GameObject> prefabs = new List<GameObject>();
}
[CreateAssetMenu(fileName = "PrefabBrowserDB", menuName = "Tools/Prefab Browser Database")]
public class PrefabBrowserDatabase : ScriptableObject
{
public List<PrefabGroup> groups = new List<PrefabGroup>();
}