예제 #1
0
        public static void ShowAsyn(GirlMemberInfo girlInfo, GirlCaptureScene captureSceneInfo)
        {
            Hashtable hash = new Hashtable();

            hash.Add("GirlInfo", girlInfo);
            hash.Add("CaptureScene", captureSceneInfo);
            GameCore.Instance.UIManager.ShowUI("LogicUI/UICaptureGirlInfo", hash);
        }
예제 #2
0
        public void SelectItem(object item)
        {
            GirlCaptureScene captureScene = (GirlCaptureScene)item;

            Debug.Log("SelectCapter:" + captureScene.CaptureSceneRecord.Id);

            UICaptureSceneInfo.ShowAsyn(captureScene);
        }
예제 #3
0
        public override void Show(Hashtable hash)
        {
            base.Show(hash);

            var girlInfo = (GirlMemberInfo)hash["GirlInfo"];

            _CaptureScene = (GirlCaptureScene)hash["CaptureScene"];

            InitGirlInfo(girlInfo);
        }