Example #1
0
    public bool GetAnimatorName(string _chara, out string _animator)
    {
        bool bRet = false;

        if (AnimatorDict.TryGetValue(_chara, out _animator))
        {
            bRet = true;
        }

        return(bRet);
    }
Example #2
0
 private void Awake() => Instance = this;