SynicSugarManger 

    Namespace: SynicSugar

    Description 

    Modify the backend server and check the status of users.

    Event 

    APIdescription
    CleanupForEditorFor dev. Invoke this event OnDestory in the editor.

    Property 

    APIdescription
    StateCheck user state
    LocalUserIdCheck user state

    Function 

    APIdescription
    GetFactoryNameGet core name
    SetCoreFactoryNOT DONE. Change backend and transport
    using UnityEngine;
    using SynicSugar;
    
    public class FPSManager : MonoBehaviour {     
        private void Start()
        {
            if(!SynicSugarManger.Instance.State.IsLoggedIn){
                Application.targetFrameRate = 60;
            }
        }
    }