From 57adf21c147bf2306042a39cd4e5b91475166713 Mon Sep 17 00:00:00 2001 From: Hiroshiba Date: Tue, 14 May 2024 04:06:41 +0900 Subject: [PATCH] =?UTF-8?q?=E3=82=BD=E3=83=B3=E3=82=B0=E3=81=AE=E3=83=87?= =?UTF-8?q?=E3=83=95=E3=82=A9=E3=83=AB=E3=83=88=E3=82=B9=E3=82=BF=E3=82=A4?= =?UTF-8?q?=E3=83=AB=E3=81=AF=E4=B8=80=E6=97=A6=E5=AE=9F=E8=A3=85=E3=81=97?= =?UTF-8?q?=E3=81=AA=E3=81=84=E6=96=B9=E9=87=9D?= 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 47511384c4..e4e748937c 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 f16b5ba369..b772620ebe 100644 --- a/src/store/singing.ts +++ b/src/store/singing.ts @@ -230,11 +230,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 } });