danoniplus 32.6.1 → 33.0.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.
@@ -5,7 +5,7 @@
5
5
  *
6
6
  * Source by tickle
7
7
  * Created : 2019/11/19
8
- * Revised : 2023/07/08 (v32.6.1)
8
+ * Revised : 2023/07/29 (v33.0.0)
9
9
  *
10
10
  * https://github.com/cwtickle/danoniplus
11
11
  */
@@ -96,7 +96,7 @@ const g_limitObj = {
96
96
 
97
97
  // 判定キャラクタの幅、高さ、フォントサイズ
98
98
  jdgCharaWidth: 200,
99
- jdgCharaHeight: 20,
99
+ jdgCharaHeight: 22,
100
100
  jdgCharaSiz: 20,
101
101
 
102
102
  // 判定数の幅、高さ、フォントサイズ
@@ -1613,6 +1613,13 @@ const g_cssObj = {
1613
1613
  common_combo: `common_combo`,
1614
1614
  common_score: `common_score`,
1615
1615
 
1616
+ common_comboJ: `common_comboJ`,
1617
+ common_comboFJ: `common_comboFJ`,
1618
+ common_diffSlow: `common_diffSlow`,
1619
+ common_diffFast: `common_diffFast`,
1620
+ common_excessive: `common_excessive`,
1621
+ common_estAdj: `common_estAdj`,
1622
+
1616
1623
  result_score: `result_score`,
1617
1624
  result_scoreHiBlanket: `result_scoreHiBlanket`,
1618
1625
  result_scoreHi: `result_scoreHi`,
@@ -2313,23 +2320,38 @@ const g_titleLists = {
2313
2320
  /** タイトルのデフォルトフォント */
2314
2321
  defaultFonts: [`'メイリオ'`],
2315
2322
 
2316
- /** グラデーション関連初期リスト */
2317
- grdList: [`titlegrd`, `titlearrowgrd`],
2318
-
2319
2323
  /** タイトル用アニメーションの設定種 */
2320
2324
  animation: [`Name`, `Duration`, `Delay`, `TimingFunction`],
2321
2325
 
2322
2326
  };
2323
2327
 
2324
- const g_animationData = [`back`, `mask`];
2328
+ const g_animationData = [`back`, `mask`, `style`];
2329
+ const g_animationFunc = {
2330
+ make: {
2331
+ back: makeSpriteData,
2332
+ mask: makeSpriteData,
2333
+ style: makeStyleData,
2334
+ },
2335
+ draw: {
2336
+ back: drawSpriteData,
2337
+ mask: drawSpriteData,
2338
+ style: drawStyleData,
2339
+ },
2340
+ drawMain: {
2341
+ back: drawMainSpriteData,
2342
+ mask: drawMainSpriteData,
2343
+ style: drawMainStyleData,
2344
+ },
2345
+ };
2325
2346
 
2326
- let g_fadeinStockList = [`word`, `back`, `mask`];
2347
+ let g_fadeinStockList = [`word`, `back`, `mask`, `style`];
2327
2348
 
2328
2349
  /** フェードイン時でもプリロードを除外しないリスト */
2329
2350
  const g_preloadExceptList = {
2330
2351
  word: [`[left]`, `[center]`, `[right]`],
2331
2352
  back: [],
2332
2353
  mask: [],
2354
+ style: [],
2333
2355
  };
2334
2356
 
2335
2357
  /** フェードイン時、プリロードを強制削除するリスト(初期値は空) */
@@ -2337,6 +2359,7 @@ const g_stockForceDelList = {
2337
2359
  word: [],
2338
2360
  back: [],
2339
2361
  mask: [],
2362
+ style: [],
2340
2363
  };
2341
2364
 
2342
2365
  /**
@@ -2356,6 +2379,7 @@ const g_dataMinObj = {
2356
2379
  word: 3,
2357
2380
  mask: 1,
2358
2381
  back: 1,
2382
+ style: 1,
2359
2383
  };
2360
2384
 
2361
2385
  const g_dfColorObj = {
@@ -2370,6 +2394,8 @@ const g_dfColorObj = {
2370
2394
 
2371
2395
  };
2372
2396
 
2397
+ const g_cssBkProperties = {};
2398
+
2373
2399
  const g_dfColorBaseObj = {
2374
2400
 
2375
2401
  dark: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "danoniplus",
3
- "version": "32.6.1",
3
+ "version": "33.0.0",
4
4
  "description": "Dancing☆Onigiri (CW Edition) - Web-based Rhythm Game",
5
5
  "main": "index.js",
6
6
  "scripts": {