コード例 #1
0
    void Update()
    {
        if (!b_setLocalPlayer)
        {
            if (!MyNetwork.instance.b_foundLocalPlayer)
            {
                return;
            }
            if (MyNetwork.instance.localPlayer)
            {
                SetUp();
            }
        }

        if (attachedSkill != null && attachedSkill.b_needsUpdate)
        {
            attachedSkill.Update();
        }
    }