From 81158163171a508e6e1e2cf6a4b44e4bac426624 Mon Sep 17 00:00:00 2001 From: Hiroshiba Date: Wed, 22 May 2024 03:48:41 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20=E3=82=BD=E3=83=B3=E3=82=B0?= =?UTF-8?q?=E3=81=AE=E3=83=87=E3=83=95=E3=82=A9=E3=83=AB=E3=83=88=E3=82=B9?= =?UTF-8?q?=E3=82=BF=E3=82=A4=E3=83=AB=E3=81=AF=E4=B8=80=E6=97=A6=E5=AE=9F?= =?UTF-8?q?=E8=A3=85=E3=81=97=E3=81=AA=E3=81=84=E6=96=B9=E9=87=9D=20(#2077?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ソングのデフォルトスタイルは一旦実装しない方針 --- src/components/Dialog/AllDialog.vue | 1 - src/components/Sing/CharacterMenuButton/MenuButton.vue | 1 - src/store/singing.ts | 3 --- 3 files changed, 5 deletions(-) diff --git a/src/components/Dialog/AllDialog.vue b/src/components/Dialog/AllDialog.vue index 981cae021e..052434d17e 100644 --- a/src/components/Dialog/AllDialog.vue +++ b/src/components/Dialog/AllDialog.vue @@ -100,7 +100,6 @@ const isCharacterOrderDialogOpenComputed = computed({ }), }); -// TODO: デフォルトスタイル選択(ソング)の実装 // デフォルトスタイル選択(トーク) const orderedTalkCharacterInfos = computed(() => { return filterCharacterInfosByStyleType( diff --git a/src/components/Sing/CharacterMenuButton/MenuButton.vue b/src/components/Sing/CharacterMenuButton/MenuButton.vue index 1bc67bd94d..69edcc411a 100644 --- a/src/components/Sing/CharacterMenuButton/MenuButton.vue +++ b/src/components/Sing/CharacterMenuButton/MenuButton.vue @@ -200,7 +200,6 @@ const getDefaultStyle = (speakerUuid: string) => { // ここで取得されるcharacterInfoには、ソングエディタ向けのスタイルのみ含まれるので、 // その中の最初のスタイルをソングエディタにおける仮のデフォルトスタイルとする - // TODO: ソングエディタ向けのデフォルトスタイルをどうするか考える const defaultStyleId = characterInfo?.metas.styles[0].styleId; const defaultStyle = characterInfo?.metas.styles.find( diff --git a/src/store/singing.ts b/src/store/singing.ts index c5a4c15883..cbba5ead3d 100644 --- a/src/store/singing.ts +++ b/src/store/singing.ts @@ -232,11 +232,8 @@ export const singingStore = createPartialStore({ const engineId = singer?.engineId ?? state.engineIds[0]; - // 最初のスタイルをソングエディタにおける仮のデフォルトスタイルとする - // TODO: ソングエディタ向けのデフォルトスタイルをどうするか考える const defaultStyleId = userOrderedCharacterInfos[0].metas.styles[0].styleId; - const styleId = singer?.styleId ?? defaultStyleId; dispatch("SETUP_SINGER", { singer: { engineId, styleId } });