Skip to content

Commit 88de66c

Browse files
committed
fix: prepare for publish
1 parent 7a46690 commit 88de66c

File tree

7 files changed

+5
-7
lines changed

7 files changed

+5
-7
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@
3131
"pixi-viewport": "^4.7.0",
3232
"pixi.js": "^5.2.0"
3333
},
34-
"author": "",
35-
"license": "ISC"
34+
"author": "Dopamine Ltd.",
35+
"license": "MIT"
3636
}
File renamed without changes.

src/assets/coinFlip1.wav

-95 KB
Binary file not shown.

src/assets/coinFlip2.wav

-107 KB
Binary file not shown.

src/assets/coinFlip3.wav

-107 KB
Binary file not shown.

src/core/Application.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,12 @@ export default class GameApplication extends Application {
9191
*
9292
*/
9393
async createBackground() {
94-
const images = { banner: Assets.images.banner };
94+
const images = { background: Assets.images.background };
9595

9696
await Assets.load({ images });
9797
await Assets.prepareImages(images);
9898

99-
const sprite = Sprite.from('banner');
99+
const sprite = Sprite.from('background');
100100

101101
this.stage.addChildAt(sprite);
102102
this.background = sprite;

src/scenes/Splash.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@ export default class Splash extends Scene {
2929
gamepad: Assets.images.gamepad,
3030
};
3131
const sounds = {
32-
coinFlip1: Assets.sounds.coinFlip1,
33-
coinFlip2: Assets.sounds.coinFlip2,
34-
coinFlip3: Assets.sounds.coinFlip3,
32+
3533
};
3634

3735
return super.preload({ images, sounds });

0 commit comments

Comments
 (0)