Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
ericjung committed Oct 27, 2024
1 parent 45d4125 commit fe92f24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions game.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const LEVEL_SCENE_NAME = "level";
const BONUS_SCENE_NAME = "bonus";
const BONUS_TITLE_SCENE_NAME = "bonusTitle";
const BONUS_RESULTS_SCENE_NAME ="bonusResults";
const BONUS_LEVEL_DURATION = 12340000; // in msec
const BONUS_LEVEL_DURATION = 578000; // in msec

const BONUS_LEVEL_IN_PROGRESS = 1;
const BONUS_LEVEL_ENDED = 2;
Expand All @@ -13,7 +13,7 @@ const BONUS_LEVEL_NOT_IN_PROGRESS = 3;
const YELLOW = kaboom.color(1, 1, 0, 1); // rgba
const WHITE = kaboom.color(1, 1, 1, 1 ); // rgba

const NUM_LIVES_PER_GAME = 100;
const NUM_LIVES_PER_GAME = 1980;

const NORMAL_FONT_SIZE = 8;
const BIG_FONT_SIZE = 12;
Expand Down

0 comments on commit fe92f24

Please sign in to comment.