feat: 完善敲木鱼玩法模板链路

This commit is contained in:
2026-05-24 02:49:13 +08:00
parent 2ba4691bc0
commit 8638397faa
402 changed files with 2329 additions and 1781 deletions

View File

@@ -57,6 +57,7 @@ export interface WoodenFishActionRequest {
hitObjectReferenceImageSrc?: string | null;
hitObjectAsset?: WoodenFishImageAsset | null;
backgroundAsset?: WoodenFishImageAsset | null;
backButtonAsset?: WoodenFishImageAsset | null;
hitSoundPrompt?: string | null;
hitSoundAsset?: WoodenFishAudioAsset | null;
floatingWords?: string[] | null;
@@ -80,6 +81,7 @@ export interface WoodenFishDraftResponse {
floatingWords: string[];
hitObjectAsset: WoodenFishImageAsset | null;
backgroundAsset: WoodenFishImageAsset | null;
backButtonAsset?: WoodenFishImageAsset | null;
hitSoundAsset: WoodenFishAudioAsset | null;
coverImageSrc: string | null;
generationStatus: WoodenFishGenerationStatus;
@@ -127,6 +129,7 @@ export interface WoodenFishWorkProfileResponse {
draft: WoodenFishDraftResponse;
hitObjectAsset: WoodenFishImageAsset;
backgroundAsset: WoodenFishImageAsset | null;
backButtonAsset: WoodenFishImageAsset | null;
hitSoundAsset: WoodenFishAudioAsset;
floatingWords: string[];
}