void Preset() { mPresetSeq = mPresetAddEvent.Response.data.presetSeq; UserMgr.UserInfo.userRuby = (int.Parse(UserMgr.UserInfo.userRuby) - mContestListInfo.entryFee).ToString(); mPresetListEvent = new PresetListEvent(new EventDelegate(this, "GetPresetList")); NetMgr.GetPresetList(mPresetListEvent); // transform.root.FindChild("Scroll").FindChild("Main").FindChild("PreSetting").FindChild("Top") // .FindChild("Top Menu").FindChild("Register").GetComponent<PresettingRC>().PresetUpdate(); }
public void GetContest() { for (int i = 0; i < ContestEvent.Response.data.Count; i++) { if (ContestEvent.Response.data [i].contestStatus == 2) { UserMgr.ContestStatus = ContestEvent.Response.data [i].contestStatus; break; } } PresetEvent = new PresetListEvent(new EventDelegate(this, "GetPreset")); NetMgr.GetPresetList(PresetEvent); UserMgr.ContestList = ContestEvent.Response.data; }
public void Button() { int MenuStatus = LobbyMainCommander.MenuStatus; AllBarDisable(); for (int i = 0; i < transform.root.FindChild("Scroll").FindChild("Main").GetComponent <LobbyTopCommander>().mTopMenuName.Length; i++) { if (name == transform.root.FindChild("Scroll").FindChild("Main").GetComponent <LobbyTopCommander>().mTopMenuName[i]) { LobbyMainCommander.MenuStatus = i + 1; transform.FindChild("Bar").gameObject.SetActive(true); transform.FindChild("Label").GetComponent <UILabel>().color = new Color(1, 1, 1, 1); transform.FindChild("Num").GetComponent <UILabel>().color = new Color(1, 1, 1, 1); break; } } Debug.Log(name + " : MenuStatus " + LobbyMainCommander.MenuStatus); if (MenuStatus == LobbyMainCommander.MenuStatus) { if (transform.parent.FindChild("Sub").gameObject.activeSelf) { transform.root.FindChild("Scroll").FindChild("Main").GetComponent <LobbyAddSub> ().DisableSub(); transform.root.FindChild("Scroll").FindChild("Main").GetComponent <LobbyNCCommander> ().NCUpDown("Up"); } else { transform.parent.FindChild("Sub").gameObject.SetActive(true); transform.root.FindChild("Scroll").FindChild("Main").FindChild("Gift").FindChild("GiftButton").GetComponent <Gift> ().Off(); transform.root.FindChild("Scroll").FindChild("Main").FindChild("Gift").gameObject.SetActive(false); transform.root.FindChild("Scroll").FindChild("Main").GetComponent <LobbyNCCommander> ().NCUpDown("Down"); } } else { transform.root.FindChild("Scroll").FindChild("Main").FindChild("Gift").FindChild("GiftButton").GetComponent <Gift> ().Off(); transform.root.FindChild("Scroll").FindChild("Main").FindChild("Gift").gameObject.SetActive(false); transform.parent.FindChild("Sub").gameObject.SetActive(false); transform.root.FindChild("Scroll").FindChild("Main").GetComponent <LobbyAddSubInSub> ().DisableSub(); transform.root.FindChild("Scroll").FindChild("Main").GetComponent <LobbyAddSub> ().ResetAddSub(); transform.root.FindChild("Scroll").FindChild("Main").GetComponent <LobbyAddSubInSub> ().ResetSubInSub(); transform.root.FindChild("Scroll").FindChild("Main").FindChild("Top").FindChild("Sub").FindChild("BG_B").gameObject.SetActive(false); transform.root.FindChild("Scroll").FindChild("Main").GetComponent <LobbyNCCommander> ().NCUpDown("Up"); } if (LobbyMainCommander.MenuStatus > 1) { transform.parent.FindChild("Sub").gameObject.SetActive(false); transform.root.FindChild("Scroll").FindChild("Main").FindChild("Gift").FindChild("GiftButton").GetComponent <Gift> ().Off(); transform.root.FindChild("Scroll").FindChild("Main").FindChild("Gift").gameObject.SetActive(false); transform.root.FindChild("Scroll").FindChild("Main").GetComponent <LobbyNCCommander> ().NCUpDown("Up"); if (LobbyMainCommander.MenuStatus == 2) { if (UserMgr.UserInfo.memSeq != null) { presetListEvent = new PresetListEvent(new EventDelegate(this, "GetPresetList")); NetMgr.GetPresetList(presetListEvent); } else { transform.root.FindChild("Scroll").FindChild("Main").FindChild("Nomal Contest").gameObject.SetActive(false); transform.root.FindChild("Scroll").FindChild("Main").FindChild("PreSet Contest").gameObject.SetActive(true); transform.root.FindChild("Scroll").FindChild("Main").FindChild("History Contest").gameObject.SetActive(false); } //transform.root.FindChild("Scroll").FindChild ("Main").FindChild("Nomal Contest").gameObject.SetActive(false); //transform.root.FindChild("Scroll").FindChild ("Main").FindChild("PreSet Contest").gameObject.SetActive(true); } else if (LobbyMainCommander.MenuStatus == 3) { if (UserMgr.UserInfo.memSeq != null) { HistoryEvent = new HistoryListEvent(new EventDelegate(this, "GetHistoryList")); NetMgr.GetHistoryList(HistoryEvent); } else { transform.root.FindChild("Scroll").FindChild("Main").FindChild("Gift").gameObject.SetActive(false); transform.root.FindChild("Scroll").FindChild("Main").FindChild("Nomal Contest").gameObject.SetActive(false); transform.root.FindChild("Scroll").FindChild("Main").FindChild("PreSet Contest").gameObject.SetActive(false); transform.root.FindChild("Scroll").FindChild("Main").FindChild("History Contest").gameObject.SetActive(true); } } } else { transform.root.FindChild("Scroll").FindChild("Main").FindChild("Gift").gameObject.SetActive(true); transform.root.FindChild("Scroll").FindChild("Main").FindChild("Nomal Contest").gameObject.SetActive(true); transform.root.FindChild("Scroll").FindChild("Main").FindChild("PreSet Contest").gameObject.SetActive(false); transform.root.FindChild("Scroll").FindChild("Main").FindChild("History Contest").gameObject.SetActive(false); } }
public void PresetUpdate() { //Debug.Log ("PresetUpdate"); presetListEvent = new PresetListEvent(new EventDelegate(this, "GetPresetList")); NetMgr.GetPresetList(presetListEvent); }