コード例 #1
0
    protected override void Awake()
    {
        base.Awake();

        _animation = transform.Find("Anim").GetComponent <CPlayerAnimation>();
        _animation.Init(this);
    }
コード例 #2
0
ファイル: CPlayerCharacter.cs プロジェクト: ff4656/AppGames
    protected override void Awake()
    {
        base.Awake();

        _isMove = false;
        _isLeft = false;

        _animation = GetComponent <CPlayerAnimation>();
        _animation.Init(this);
    }