feat: 新增AI创作中心场景,支持改写/续写/创作

This commit is contained in:
2026-03-03 17:06:08 +08:00
parent cc0e39cccc
commit 699362cc7d
6 changed files with 1290 additions and 1 deletions

View File

@@ -6,6 +6,7 @@ import StoryScene from './StoryScene';
import EndingScene from './EndingScene';
import ProfileScene from './ProfileScene';
import ChapterScene from './ChapterScene';
import AICreateScene from './AICreateScene';
export default class SceneManager {
constructor(main) {
@@ -16,7 +17,8 @@ export default class SceneManager {
story: StoryScene,
ending: EndingScene,
profile: ProfileScene,
chapter: ChapterScene
chapter: ChapterScene,
aiCreate: AICreateScene
};
}