コード例 #1
0
        private bool ShowChapterInfo(string sceneName)
        {
            string currentChapterBackup = currentChapter;

            currentChapter = sceneName;
            bool hasBlock = chapterInfo.ExecuteIfHasBlock(sceneName);

            if (!hasBlock)
            {
                currentChapter = currentChapterBackup;
            }
            return(hasBlock);
        }