We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ee9ca0 commit e702c68Copy full SHA for e702c68
Tag.cs
@@ -1,13 +1,12 @@
1
-using Sirenix.OdinInspector;
2
using System.Collections.Generic;
3
using UnityEngine;
4
5
namespace ToolBox.Tags
6
{
7
- [CreateAssetMenu(menuName = "ToolBox/Tagging/Tag"), AssetSelector, Required]
+ [CreateAssetMenu(menuName = "ToolBox/Tagging/Tag")]
8
public sealed class Tag : ScriptableObject
9
10
- [ShowInInspector, ReadOnly] private HashSet<int> _entities = new HashSet<int>();
+ private HashSet<int> _entities = new HashSet<int>();
11
12
public void Add(int entity) =>
13
_entities.Add(entity);
0 commit comments