Skip to content

Commit

Permalink
refactor: ソングのデフォルトスタイルは一旦実装しない方針 (#2077)
Browse files Browse the repository at this point in the history
ソングのデフォルトスタイルは一旦実装しない方針
  • Loading branch information
Hiroshiba authored May 21, 2024
1 parent ef3477d commit 8115816
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/components/Dialog/AllDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ const isCharacterOrderDialogOpenComputed = computed({
}),
});
// TODO: デフォルトスタイル選択(ソング)の実装
// デフォルトスタイル選択(トーク)
const orderedTalkCharacterInfos = computed(() => {
return filterCharacterInfosByStyleType(
Expand Down
1 change: 0 additions & 1 deletion src/components/Sing/CharacterMenuButton/MenuButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,6 @@ const getDefaultStyle = (speakerUuid: string) => {
// ここで取得されるcharacterInfoには、ソングエディタ向けのスタイルのみ含まれるので、
// その中の最初のスタイルをソングエディタにおける仮のデフォルトスタイルとする
// TODO: ソングエディタ向けのデフォルトスタイルをどうするか考える
const defaultStyleId = characterInfo?.metas.styles[0].styleId;
const defaultStyle = characterInfo?.metas.styles.find(
Expand Down
3 changes: 0 additions & 3 deletions src/store/singing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -232,11 +232,8 @@ export const singingStore = createPartialStore<SingingStoreTypes>({

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 } });
Expand Down

0 comments on commit 8115816

Please sign in to comment.