mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-20 20:16:16 -04:00
Test fixes
This commit is contained in:
parent
adfd3ecf83
commit
8d7d97608d
4 changed files with 2 additions and 10 deletions
|
@ -35,7 +35,7 @@ already maxed out.
|
|||
- [jaceys] A visual indication of whether a ball has hit a brick this serve
|
||||
- Top down /reach: punishing now, maybe only reset if you hit the lowest populate row of the level, if it's not a full width row
|
||||
|
||||
# Todo before next release
|
||||
# To do before next release
|
||||
|
||||
# Next
|
||||
|
||||
|
|
6
dist/index.html
vendored
6
dist/index.html
vendored
|
@ -2004,7 +2004,7 @@ const rawUpgrades = [
|
|||
}
|
||||
];
|
||||
|
||||
},{"./i18n/i18n":"eNPRm","./game_utils":"cEeac","@parcel/transformer-js/src/esmodule-helpers.js":"gkKU3"}],"eNPRm":[function(require,module,exports,__globalThis) {
|
||||
},{"./i18n/i18n":"eNPRm","@parcel/transformer-js/src/esmodule-helpers.js":"gkKU3","./game_utils":"cEeac"}],"eNPRm":[function(require,module,exports,__globalThis) {
|
||||
var parcelHelpers = require("@parcel/transformer-js/src/esmodule-helpers.js");
|
||||
parcelHelpers.defineInteropFlag(exports);
|
||||
parcelHelpers.export(exports, "getCurrentLang", ()=>getCurrentLang);
|
||||
|
@ -2266,7 +2266,6 @@ function countBricksBelow(gameState, index) {
|
|||
function comboKeepingRate(level) {
|
||||
return clamp(1 - 1 / (1 + level) * 1.5, 0, 1);
|
||||
}
|
||||
for(let i = 0; i < 5; i++)console.log(Math.round(comboKeepingRate(i) * 100) + '%');
|
||||
|
||||
},{"./loadGameData":"l1B4x","./i18n/i18n":"eNPRm","@parcel/transformer-js/src/esmodule-helpers.js":"gkKU3"}],"6rQoT":[function(require,module,exports,__globalThis) {
|
||||
var parcelHelpers = require("@parcel/transformer-js/src/esmodule-helpers.js");
|
||||
|
@ -4512,9 +4511,6 @@ function premiumMenuEntry(gameState) {
|
|||
text = (0, _i18N.t)("premium.per_hours", args);
|
||||
help = (0, _i18N.t)("premium.per_hours_help", args);
|
||||
}
|
||||
console.log({
|
||||
args
|
||||
});
|
||||
}
|
||||
} catch (e) {
|
||||
console.warn(e);
|
||||
|
|
|
@ -192,7 +192,4 @@ export function countBricksBelow(gameState: GameState, index: number) {
|
|||
|
||||
export function comboKeepingRate(level:number){
|
||||
return clamp(1-1/(1+level)*1.5,0,1)
|
||||
}
|
||||
for(let i = 0;i<5;i++){
|
||||
console.log(Math.round(comboKeepingRate(i)*100)+'%')
|
||||
}
|
|
@ -116,7 +116,6 @@ export function premiumMenuEntry(gameState: GameState) {
|
|||
help = t("premium.per_hours_help", args);
|
||||
}
|
||||
|
||||
console.log({ args });
|
||||
}
|
||||
} catch (e) {
|
||||
console.warn(e);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue