danoniplus 44.5.19 → 44.5.21

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.
Files changed (39) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +146 -146
  3. package/danoni/dTemplate.html +61 -61
  4. package/danoni/danoni0.html +180 -180
  5. package/danoni/danoni0_remote.html +132 -132
  6. package/danoni/danoni2.html +45 -45
  7. package/danoni/danoni3.html +126 -126
  8. package/danoni/danoni4_skin.html +69 -69
  9. package/danoni/danoni5.html +255 -255
  10. package/danoni/danoniA.txt +30 -30
  11. package/danoni/danoniA2.txt +11 -11
  12. package/danoni/dos/0001_ThrustUp.txt +73 -73
  13. package/danoni/dos/0002_Combative.txt +30 -30
  14. package/img/note/aaShadow.svg +6 -6
  15. package/img/note/arrow.svg +6 -6
  16. package/img/note/arrowShadow.svg +6 -6
  17. package/img/note/c.svg +6 -6
  18. package/img/note/giko.svg +6 -6
  19. package/img/note/iyo.svg +6 -6
  20. package/img/note/monar.svg +6 -6
  21. package/img/note/morara.svg +6 -6
  22. package/img/note/onigiri.svg +6 -6
  23. package/js/danoni_main.js +15306 -15306
  24. package/js/lib/danoni_constants.js +4807 -4806
  25. package/js/lib/danoni_localbinary.js +29 -29
  26. package/js/lib/legacy_functions.js +216 -216
  27. package/js/sample/danoni_custom-003.js +74 -74
  28. package/js/template/danoni_custom.js +233 -233
  29. package/js/template/danoni_main.js +17 -17
  30. package/js/template/danoni_setting.js +445 -445
  31. package/jsconfig.json +12 -12
  32. package/package.json +23 -23
  33. package/skin/danoni_skin_background.css +8 -8
  34. package/skin/danoni_skin_default.css +216 -216
  35. package/skin/danoni_skin_default.js +90 -90
  36. package/skin/danoni_skin_light.css +216 -216
  37. package/skin/danoni_skin_light.js +90 -90
  38. package/skin/danoni_skin_skyblue.css +216 -216
  39. package/skin/danoni_skin_skyblue.js +90 -90
@@ -1,91 +1,91 @@
1
- 'use strict';
2
- /**
3
- * Dancing☆Onigiri スキンjsファイル
4
- */
5
-
6
- /**
7
- * タイトル画面 [Scene: Title / Melon]
8
- */
9
- g_skinJsObj.title.push(() => {
10
-
11
- // 背景矢印
12
- // $id(`lblArrow`).left = `0px`;
13
-
14
- });
15
-
16
- /**
17
- * データ管理画面 [Scene: Data Management / Pear]
18
- */
19
- g_skinJsObj.dataMgt.push(() => {
20
-
21
- });
22
-
23
- /**
24
- * デバッグ確認画面 [Scene: Precondition / Mango]
25
- */
26
- g_skinJsObj.precondition.push(() => {
27
-
28
- });
29
-
30
- /**
31
- * オプション画面(初期表示) [Scene: Option / Lime]
32
- */
33
- g_skinJsObj.option.push(() => {
34
-
35
- // $id(`difficultySprite`).left = `25px`;
36
- // $id(`speedSprite`).left = `25px`;
37
- // $id(`motionSprite`).left = `25px`;
38
- // $id(`reverseSprite`).left = `25px`;
39
- // $id(`shuffleSprite`).left = `25px`;
40
- // $id(`autoPlaySprite`).left = `25px`;
41
- // $id(`gaugeSprite`).left = `25px`;
42
- // $id(`adjustmentSprite`).left = `25px`;
43
- // $id(`fadeinSprite`).left = `25px`;
44
- // $id(`volumeSprite`).left = `25px`;
45
-
46
- });
47
-
48
- /**
49
- * 表示変更(初期表示) [Scene: Settings-Display / Lemon]
50
- */
51
- g_skinJsObj.settingsDisplay.push(() => {
52
-
53
- // $id(`displaySprite`).left = `25px`;
54
- // $id(`appearanceSprite`).left = `25px`;
55
-
56
- });
57
-
58
- /**
59
- * 表示変更(初期表示) [Scene: Ex-Settings / apple]
60
- */
61
- g_skinJsObj.exSetting.push(() => {
62
-
63
- });
64
-
65
- /**
66
- * キーコンフィグ画面(初期表示) [Scene: KeyConfig / Orange]
67
- */
68
- g_skinJsObj.keyconfig.push(() => {
69
-
70
- });
71
-
72
- /**
73
- * ロード開始時
74
- */
75
- g_skinJsObj.preloading.push(() => {
76
-
77
- });
78
-
79
- /**
80
- * メイン画面(初期表示) [Scene: Main / Banana]
81
- */
82
- g_skinJsObj.main.push(() => {
83
-
84
- });
85
-
86
- /**
87
- * 結果画面(初期表示) [Scene: Result / Grape]
88
- */
89
- g_skinJsObj.result.push(() => {
90
-
1
+ 'use strict';
2
+ /**
3
+ * Dancing☆Onigiri スキンjsファイル
4
+ */
5
+
6
+ /**
7
+ * タイトル画面 [Scene: Title / Melon]
8
+ */
9
+ g_skinJsObj.title.push(() => {
10
+
11
+ // 背景矢印
12
+ // $id(`lblArrow`).left = `0px`;
13
+
14
+ });
15
+
16
+ /**
17
+ * データ管理画面 [Scene: Data Management / Pear]
18
+ */
19
+ g_skinJsObj.dataMgt.push(() => {
20
+
21
+ });
22
+
23
+ /**
24
+ * デバッグ確認画面 [Scene: Precondition / Mango]
25
+ */
26
+ g_skinJsObj.precondition.push(() => {
27
+
28
+ });
29
+
30
+ /**
31
+ * オプション画面(初期表示) [Scene: Option / Lime]
32
+ */
33
+ g_skinJsObj.option.push(() => {
34
+
35
+ // $id(`difficultySprite`).left = `25px`;
36
+ // $id(`speedSprite`).left = `25px`;
37
+ // $id(`motionSprite`).left = `25px`;
38
+ // $id(`reverseSprite`).left = `25px`;
39
+ // $id(`shuffleSprite`).left = `25px`;
40
+ // $id(`autoPlaySprite`).left = `25px`;
41
+ // $id(`gaugeSprite`).left = `25px`;
42
+ // $id(`adjustmentSprite`).left = `25px`;
43
+ // $id(`fadeinSprite`).left = `25px`;
44
+ // $id(`volumeSprite`).left = `25px`;
45
+
46
+ });
47
+
48
+ /**
49
+ * 表示変更(初期表示) [Scene: Settings-Display / Lemon]
50
+ */
51
+ g_skinJsObj.settingsDisplay.push(() => {
52
+
53
+ // $id(`displaySprite`).left = `25px`;
54
+ // $id(`appearanceSprite`).left = `25px`;
55
+
56
+ });
57
+
58
+ /**
59
+ * 表示変更(初期表示) [Scene: Ex-Settings / apple]
60
+ */
61
+ g_skinJsObj.exSetting.push(() => {
62
+
63
+ });
64
+
65
+ /**
66
+ * キーコンフィグ画面(初期表示) [Scene: KeyConfig / Orange]
67
+ */
68
+ g_skinJsObj.keyconfig.push(() => {
69
+
70
+ });
71
+
72
+ /**
73
+ * ロード開始時
74
+ */
75
+ g_skinJsObj.preloading.push(() => {
76
+
77
+ });
78
+
79
+ /**
80
+ * メイン画面(初期表示) [Scene: Main / Banana]
81
+ */
82
+ g_skinJsObj.main.push(() => {
83
+
84
+ });
85
+
86
+ /**
87
+ * 結果画面(初期表示) [Scene: Result / Grape]
88
+ */
89
+ g_skinJsObj.result.push(() => {
90
+
91
91
  });