15 lines
262 B
TypeScript
15 lines
262 B
TypeScript
/**
|
|
* BGM 相关常量
|
|
*/
|
|
import type { BgmMixConfig } from "./types"
|
|
|
|
/** 默认 BGM 混音配置 */
|
|
export const DEFAULT_BGM_MIX_CONFIG: BgmMixConfig = {
|
|
enabled: false,
|
|
music_id: "",
|
|
volume: 50,
|
|
fade_in: 0.5,
|
|
fade_out: 0.5,
|
|
voice_dodge: true,
|
|
}
|