| 55 | }); |
| 56 | |
| 57 | function processSounds() { |
| 58 | var soundsRoot = path.join(root, 'sounds/'); |
| 59 | |
| 60 | // TODO: more sounds. https://github.com/deathcap/ProgrammerArt/issues/1 |
| 61 | zipRP.file('assets/minecraft/sounds/liquid/splash.ogg', new Uint8Array(fs.readFileSync(soundsRoot + '9508_petenice_splash.ogg')), fileOpts); |
| 62 | zipRP.file('assets/minecraft/sounds/damage/fallsmall.ogg', new Uint8Array(fs.readFileSync(soundsRoot + '44429_thecheeseman_hurt2.ogg')), fileOpts); |
| 63 | zipRP.file('assets/minecraft/sounds/random/glass1.ogg', new Uint8Array(fs.readFileSync(soundsRoot + '71947_cmusounddesign_bm-glass-break.ogg')), fileOpts); |
| 64 | }; |
| 65 | |
| 66 | function processAnimations() { |
| 67 | // TODO: more animations. https://github.com/deathcap/ProgrammerArt/issues/10 |