danoniplus 32.6.0 → 32.7.0
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 +339 -467
- package/js/lib/danoni_constants.js +5 -5
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*
|
|
6
6
|
* Source by tickle
|
|
7
7
|
* Created : 2019/11/19
|
|
8
|
-
* Revised : 2023/
|
|
8
|
+
* Revised : 2023/07/17 (v32.7.0)
|
|
9
9
|
*
|
|
10
10
|
* https://github.com/cwtickle/danoniplus
|
|
11
11
|
*/
|
|
@@ -871,9 +871,11 @@ const g_autoPlaysBase = [C_FLG_OFF, C_FLG_ALL];
|
|
|
871
871
|
|
|
872
872
|
let g_appearanceRanges = [`Hidden+`, `Sudden+`, `Hid&Sud+`];
|
|
873
873
|
|
|
874
|
+
const makeSpeedList = (_minSpd, _maxSpd) => [...Array((_maxSpd - _minSpd) * 20 + 1).keys()].map(i => _minSpd + i / 20);
|
|
875
|
+
|
|
874
876
|
// 設定系全般管理
|
|
875
877
|
const g_settings = {
|
|
876
|
-
speeds:
|
|
878
|
+
speeds: makeSpeedList(C_MIN_SPEED, C_MAX_SPEED),
|
|
877
879
|
speedNum: 0,
|
|
878
880
|
speedTerms: [20, 5, 1],
|
|
879
881
|
|
|
@@ -1360,6 +1362,7 @@ const g_shortcutObj = {
|
|
|
1360
1362
|
ShiftLeft_KeyG: { id: `lnkGaugeL` },
|
|
1361
1363
|
ShiftRight_KeyG: { id: `lnkGaugeL` },
|
|
1362
1364
|
KeyG: { id: `lnkGaugeR` },
|
|
1365
|
+
KeyE: { id: `lnkExcessive` },
|
|
1363
1366
|
|
|
1364
1367
|
AltLeft_ShiftLeft_Semicolon: { id: `lnkAdjustmentHR` },
|
|
1365
1368
|
AltLeft_ShiftRight_Semicolon: { id: `lnkAdjustmentHR` },
|
|
@@ -2310,9 +2313,6 @@ const g_titleLists = {
|
|
|
2310
2313
|
/** タイトルのデフォルトフォント */
|
|
2311
2314
|
defaultFonts: [`'メイリオ'`],
|
|
2312
2315
|
|
|
2313
|
-
/** グラデーション関連初期リスト */
|
|
2314
|
-
grdList: [`titlegrd`, `titlearrowgrd`],
|
|
2315
|
-
|
|
2316
2316
|
/** タイトル用アニメーションの設定種 */
|
|
2317
2317
|
animation: [`Name`, `Duration`, `Delay`, `TimingFunction`],
|
|
2318
2318
|
|