PlayerClient.Update C# (CSharp) 메소드

Update() 개인적인 메소드

private Update ( ) : void
리턴 void
    void Update()
    {
        if (!isLocalPlayer)
            return;

        if (singleton == null)
            return;

        if  (!login)
        {
            if (pCommmon.GetTeam() == 2)
            {
                DemoMgr.singleton.Set2pComps();
                login = true;
            }

        }
    }