コード例 #1
0
        public void RemoveColbber(string id)
        {
            IntroBasePanel panel = this[IntroPanelArea.combo];

            if (null != panel && panel is IntroComboPanel)
            {
                (panel as IntroComboPanel).RemoveColbber(id);
            }
        }
コード例 #2
0
        public void ClearClobber()
        {
            IntroBasePanel panel = this[IntroPanelArea.combo];

            if (null != panel && panel is IntroComboPanel)
            {
                (panel as IntroComboPanel).ClearClobber();
            }
        }
コード例 #3
0
        public void SetCombo(int cobmo)
        {
            IntroBasePanel panel = this[IntroPanelArea.combo];

            if (null != panel)
            {
                panel.SetParams(cobmo);
            }
        }
コード例 #4
0
        public void SetClobber(string n, int num)
        {
            IntroBasePanel panel = this[IntroPanelArea.combo];

            if (null != panel)
            {
                panel.SetParams(n, num);
            }
        }
コード例 #5
0
        void AddIntro(IntroPanelArea t, string s, float timer, params object[] ps)
        {
            IntroBasePanel panel = this[t];

            if (null != panel)
            {
                string text = string.Format(s, ps);
                panel.SetParams(text, timer);
            }
        }