Example #1
0
    /// <summary>
    /// 用来设定丢出指定的 什么文本 ... 在 什么文本框 ... 中.
    /// 提示:会更改onDoingStatus = xxx_On
    /// </summary>
    /// <param name="thingStr"></param>
    /// <param name="mbmM"></param>
    private void _StartShowThing(string thingStr, MsgBoxManager mbmM)
    {
        scriptState = ScriptState.OnDoing;

        if (mbmM == mbmNormal)
        {
            onDoingStatus = OnDoingStatus.Normal_On;
        }
        else if (mbmBg)
        {
            onDoingStatus = OnDoingStatus.Bg_On;
        }
        else
        {
            //add more box here
        }

        mbmM.RunWith(MsgBoxManager.MsgBoxStatus.Running, thingStr);
    }
Example #2
0
 private void SetmbmAlphaTimeSet(MsgBoxManager mbm, float mbm_Time)
 {
     mbm.textAlphaTime_SetFloat = mbm.boxAlphaTime_SetFloat = mbm_Time;
 }