Exemplo n.º 1
0
        public IAvatar RunAdapter(string hairFileName, EyeColor eyeColor, int speedUp)
        {
            IAvatar avatar = null;

            try
            {
                if (_plugin != null)
                {
                    avatar = _plugin.RunAdapter(hairFileName, eyeColor, speedUp);
                }
            }
            catch (Exception exp)
            {
                Debug.Log(exp);
                throw;
            }

            return(avatar);
        }