コード例 #1
0
 private void OnContentLoaded(string key, GameObject asset)
 {
     if (!base.gameObject.IsDestroyed())
     {
         GameObject gameObject = UnityEngine.Object.Instantiate(asset);
         gameObject.GetComponent <SEDFSMStartEventSource>().StartEvent = accountSystemStartEvent;
         if (accountSystemFromFTUE)
         {
             LayoutMappings component = gameObject.GetComponent <LayoutMappings>();
             component.SetLayoutType("OneIdFullscreen", "center");
         }
         string currentScene = Service.Get <SceneTransitionService>().CurrentScene;
         if (currentScene == "Settings" && ClubPenguin.Core.SceneRefs.IsSet <CameraSpacePopupManager>())
         {
             eventDispatcher.DispatchEvent(new PopupEvents.ShowCameraSpacePopup(gameObject));
         }
         else if ((bool)GameObject.Find("TopCanvas"))
         {
             eventDispatcher.DispatchEvent(new PopupEvents.ShowTopPopup(gameObject));
         }
         else
         {
             eventDispatcher.DispatchEvent(new PopupEvents.ShowPopup(gameObject));
         }
     }
     accountSystemRequest = null;
 }
コード例 #2
0
        public void MembershipLoginNeeded()
        {
            LayoutMappings componentInParent = GetComponentInParent <LayoutMappings>();

            if (componentInParent != null)
            {
                componentInParent.SetLayoutType("OneIdFullscreen", "center");
            }
            Service.Get <MixLoginCreateService>().LogoutLastSession();
            Service.Get <RememberMeService>().ResetCurrentUsername();
            membershipService.LoginViaMembership = true;
            rootStateMachine.SendEvent(loginEvent);
        }