protected override void PageSwitchSetting(bool initalize)
    {
        base.PageSwitchSetting(initalize);

        m_OthersInfo = GetComponentInChildren <OthersInfo>();
        m_OthersInfo.SetTopAndBottomAjustStatusBar(new Vector2(-8, -348));
        m_OthersInfo.LabelText = GameTextUtil.GetText("he168p_title");

        CreateInfoList();

        MainMenuManager.Instance.currentCategory = MAINMENU_CATEGORY.NONE;
    }
    protected override void PageSwitchSetting(bool initalize)
    {
        base.PageSwitchSetting(initalize);

        m_OthersInfo = GetComponentInChildren <OthersInfo>();
        m_OthersInfo.SetTopAndBottomAjustStatusBar(new Vector2(-8, -348));
        m_OthersInfo.LabelText = GameTextUtil.GetText("he182p_title");

        m_OthersInfo.Infos.Clear();
        m_OthersInfo.Infos.Add(OthersInfoListContext.CreateMovieInfo("he182p_button2", "OpeningMovie.mp4", null));

        MainMenuManager.Instance.currentCategory = MAINMENU_CATEGORY.NONE;
    }
    public override void OnInitialized()
    {
        base.OnInitialized();
        m_OthersInfo = GetComponentInChildren <OthersInfo>();

        m_OthersInfo.Infos.Clear();
        for (int i = 0; i < 20; i++)
        {
            OthersInfoListContext info = new OthersInfoListContext();
            info.CaptionText = "お助け";

            m_OthersInfo.Infos.Add(info);
        }
    }