Chip Bell
Chip Bell
Based on [this setter](https://github.com/pixijs/pixi-sound/blob/51fa4470aae995685f97f2ef34194609e3efb451/src/webaudio/WebAudioContext.ts#L268-L278) @OptimusPi I believe you should be able to set `paused = false`, ala ```javascript PIXI.sound.context.paused = false; ```
@matthewcollier So I guess the next step is to decide on a format, build the data structure in JS, then create a single instance (maybe an extremely simple track. @april-lundy...
Ah, `npx` ships with npm as a shortcut for running bin files from other modules. `npx haxelib` is the same as: ``` $ ./node_modules/.bin/haxelib ```
Updating my package.json to this: ```json { "dependencies": { "haxe": "^5.0.0" }, "haxeDependencies": { "haxe": "3.4.7", "haxelib": "3.3.0", "neko": "2.2.0" }, "scripts":{ "postinstall": "haxelib --always install build.hxml" } } ```...
I unfortunately, did not. It's been a while, but IIRC I resorted to use a docker container with a global haxe install to run the build. Not ideal, but it...