Only import news files when not using BAPSicle.
This commit is contained in:
parent
89aa41bd45
commit
0a0ed8702a
1 changed files with 7 additions and 0 deletions
|
@ -9,6 +9,13 @@ import NewsIntro from "../assets/audio/NewsIntro.wav";
|
||||||
|
|
||||||
import StereoAnalyserNode from "stereo-analyser-node";
|
import StereoAnalyserNode from "stereo-analyser-node";
|
||||||
|
|
||||||
|
let NewsEndCountdown: any;
|
||||||
|
let NewsIntro: any;
|
||||||
|
if (!process.env.REACT_APP_BAPSICLE_INTERFACE) {
|
||||||
|
NewsEndCountdown = require("../assets/audio/NewsEndCountdown.wav");
|
||||||
|
NewsIntro = require("../assets/audio/NewsIntro.wav");
|
||||||
|
}
|
||||||
|
|
||||||
export const DEFAULT_TRIM_DB = -6; // The default trim applied to channel players.
|
export const DEFAULT_TRIM_DB = -6; // The default trim applied to channel players.
|
||||||
|
|
||||||
export const OFF_LEVEL_DB = -40;
|
export const OFF_LEVEL_DB = -40;
|
||||||
|
|
Loading…
Reference in a new issue