Skip to content

Commit

Permalink
Fix #1797 (ソングで四国めたん トーク・ノーマルが選択されている状態になっている) (#1798)
Browse files Browse the repository at this point in the history
* commit for fix 1797

* コメント周りを微調整

---------

Co-authored-by: Hiroshiba Kazuyuki <[email protected]>
  • Loading branch information
madosuki and Hiroshiba authored Jan 30, 2024
1 parent 23fe259 commit 27867b3
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions src/store/singing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,15 +184,12 @@ export const singingStore = createPartialStore<SingingStoreTypes>({

const engineId = singer?.engineId ?? state.engineIds[0];

// FIXME: engineIdも含めて探査する
const styleId =
singer?.styleId ??
state.defaultStyleIds[
state.defaultStyleIds.findIndex(
(x) =>
x.speakerUuid === userOrderedCharacterInfos[0].metas.speakerUuid // FIXME: defaultStyleIds内にspeakerUuidがない場合がある
)
].defaultStyleId;
// 最初のスタイルをソングエディタにおける仮のデフォルトスタイルとする
// TODO: ソングエディタ向けのデフォルトスタイルをどうするか考える
const defaultStyleId =
userOrderedCharacterInfos[0].metas.styles[0].styleId;

const styleId = singer?.styleId ?? defaultStyleId;

try {
// 指定されたstyleIdに対して、エンジン側の初期化を行う
Expand Down

0 comments on commit 27867b3

Please sign in to comment.