danoniplus 24.6.8 → 24.6.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/js/danoni_main.js +10 -10
- package/package.json +1 -1
package/js/danoni_main.js
CHANGED
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
*
|
|
5
5
|
* Source by tickle
|
|
6
6
|
* Created : 2018/10/08
|
|
7
|
-
* Revised : 2022/
|
|
7
|
+
* Revised : 2022/10/29
|
|
8
8
|
*
|
|
9
9
|
* https://github.com/cwtickle/danoniplus
|
|
10
10
|
*/
|
|
11
|
-
const g_version = `Ver 24.6.
|
|
12
|
-
const g_revisedDate = `2022/
|
|
11
|
+
const g_version = `Ver 24.6.10`;
|
|
12
|
+
const g_revisedDate = `2022/10/29`;
|
|
13
13
|
const g_alphaVersion = ``;
|
|
14
14
|
|
|
15
15
|
// カスタム用バージョン (danoni_custom.js 等で指定可)
|
|
@@ -4370,7 +4370,7 @@ function createOptionWindow(_sprite) {
|
|
|
4370
4370
|
context.font = `${C_SIZ_DIFSELECTOR}px ${getBasicFont()}`;
|
|
4371
4371
|
context.fillText(speedType, lineX + 35, 218);
|
|
4372
4372
|
|
|
4373
|
-
updateScoreDetailLabel(`Speed`,
|
|
4373
|
+
updateScoreDetailLabel(`Speed`, `${speedType}S`, speedObj[speedType].cnt, j, g_lblNameObj[`s_${speedType}`]);
|
|
4374
4374
|
});
|
|
4375
4375
|
}
|
|
4376
4376
|
|
|
@@ -4393,10 +4393,10 @@ function createOptionWindow(_sprite) {
|
|
|
4393
4393
|
}
|
|
4394
4394
|
|
|
4395
4395
|
const obj = getScoreBaseData(_scoreId);
|
|
4396
|
-
updateScoreDetailLabel(`Density`,
|
|
4397
|
-
updateScoreDetailLabel(`Density`,
|
|
4398
|
-
updateScoreDetailLabel(`Density`,
|
|
4399
|
-
updateScoreDetailLabel(`Density`,
|
|
4396
|
+
updateScoreDetailLabel(`Density`, `APM`, obj.apm, 0, g_lblNameObj.s_apm);
|
|
4397
|
+
updateScoreDetailLabel(`Density`, `Time`, obj.playingTime, 1, g_lblNameObj.s_time);
|
|
4398
|
+
updateScoreDetailLabel(`Density`, `Arrow`, obj.arrowCnts, 3, g_lblNameObj.s_arrow);
|
|
4399
|
+
updateScoreDetailLabel(`Density`, `Frz`, obj.frzCnts, 4, g_lblNameObj.s_frz);
|
|
4400
4400
|
}
|
|
4401
4401
|
|
|
4402
4402
|
/**
|
|
@@ -8384,9 +8384,9 @@ function MainInit() {
|
|
|
8384
8384
|
|
|
8385
8385
|
// 枠外判定前の場合、このタイミングで枠外判定を行う
|
|
8386
8386
|
if (g_attrObj[prevFrzName].cnt >= (-1) * g_judgObj.frzJ[g_judgPosObj.iknai]) {
|
|
8387
|
-
judgeIknai(
|
|
8387
|
+
judgeIknai(g_attrObj[prevFrzName].cnt);
|
|
8388
8388
|
if (g_headerObj.frzStartjdgUse) {
|
|
8389
|
-
judgeUwan(
|
|
8389
|
+
judgeUwan(g_attrObj[prevFrzName].cnt);
|
|
8390
8390
|
}
|
|
8391
8391
|
}
|
|
8392
8392
|
judgeObjDelete.frz(_j, prevFrzName);
|