danoniplus 27.8.2 → 27.8.4
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 +6 -6
- 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/11/15
|
|
8
8
|
*
|
|
9
9
|
* https://github.com/cwtickle/danoniplus
|
|
10
10
|
*/
|
|
11
|
-
const g_version = `Ver 27.8.
|
|
12
|
-
const g_revisedDate = `2022/
|
|
11
|
+
const g_version = `Ver 27.8.4`;
|
|
12
|
+
const g_revisedDate = `2022/11/15`;
|
|
13
13
|
const g_alphaVersion = ``;
|
|
14
14
|
|
|
15
15
|
// カスタム用バージョン (danoni_custom.js 等で指定可)
|
|
@@ -6402,7 +6402,6 @@ const loadingScoreInit = async () => {
|
|
|
6402
6402
|
|
|
6403
6403
|
// 開始フレーム数の取得(フェードイン加味)
|
|
6404
6404
|
g_scoreObj.frameNum = getStartFrame(lastFrame, g_stateObj.fadein);
|
|
6405
|
-
g_scoreObj.baseFrame = g_scoreObj.frameNum - g_stateObj.intAdjustment;
|
|
6406
6405
|
|
|
6407
6406
|
// フレームごとの速度を取得(配列形式)
|
|
6408
6407
|
let speedOnFrame = setSpeedOnFrame(g_scoreObj.speedData, lastFrame);
|
|
@@ -6455,6 +6454,7 @@ const loadingScoreInit = async () => {
|
|
|
6455
6454
|
g_headerObj.blankFrame += preblankFrame;
|
|
6456
6455
|
}
|
|
6457
6456
|
}
|
|
6457
|
+
g_scoreObj.baseFrame = g_scoreObj.frameNum - g_stateObj.intAdjustment;
|
|
6458
6458
|
|
|
6459
6459
|
// シャッフルグループ未定義の場合
|
|
6460
6460
|
if (g_keyObj[`shuffle${keyCtrlPtn}`] === undefined) {
|
|
@@ -9243,8 +9243,8 @@ const changeHitFrz = (_j, _k, _name) => {
|
|
|
9243
9243
|
|
|
9244
9244
|
// 早押ししたboostCnt分のフリーズアロー終端位置の修正
|
|
9245
9245
|
let delFrzMotionLength = 0;
|
|
9246
|
-
for (let i = 0; i
|
|
9247
|
-
delFrzMotionLength += g_workObj.motionOnFrames[
|
|
9246
|
+
for (let i = 0; i <= g_attrObj[frzName].boostCnt; i++) {
|
|
9247
|
+
delFrzMotionLength += g_workObj.motionOnFrames[i] * g_attrObj[frzName].boostSpd;
|
|
9248
9248
|
}
|
|
9249
9249
|
|
|
9250
9250
|
g_attrObj[frzName].frzBarLength -= (delFrzLength + delFrzMotionLength) * g_attrObj[frzName].dir;
|