Exemple #1
0
        public override GameObject Parse(string value)
        {
            GameObject obj = GameObjectExtensions.Find(value, true);

            if (!obj)
            {
                throw new ParserInputException($"Could not find GameObject of name {value}.");
            }

            return(obj);
        }