private void Awake()
    {
        if (Instance == null)
        {
            Instance = this;
        }

        TagsToInclude = new HashSet <string>();
        TagsToExclude = new HashSet <string>();
    }
예제 #2
0
    private void Awake()
    {
        if (Instance == null)
        {
            Instance = this;
        }

        TagsToInclude = new HashSet <string>();
        TagsToExclude = new HashSet <string>();

        FillWithRandomSearch();
    }