@wwawing/engine 4.1.0-unstable.based-on.3.12.11 → 4.1.0-unstable.based-on.3.12.11.p.1
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/LICENSE +1 -1
- package/debug/make-debug-pages.ts +5 -1
- package/debug/maps-config.ts +1 -0
- package/lib/__tests__/wwa_util-test.d.ts +1 -0
- package/lib/load_script_file/index.d.ts +6 -0
- package/lib/wwa.js +3 -3
- package/lib/wwa_cgmanager.d.ts +11 -2
- package/lib/wwa_data.d.ts +15 -0
- package/lib/wwa_estimate_battle.d.ts +3 -2
- package/lib/wwa_expression/regexp.d.ts +1 -0
- package/lib/wwa_expression/typedef.d.ts +1 -1
- package/lib/wwa_expression2/acorn.d.ts +111 -0
- package/lib/wwa_expression2/converter.d.ts +4 -0
- package/lib/wwa_expression2/eval.d.ts +60 -0
- package/lib/wwa_expression2/index.d.ts +4 -0
- package/lib/wwa_expression2/wwa.d.ts +144 -0
- package/lib/wwa_input.d.ts +11 -0
- package/lib/wwa_main.d.ts +64 -5
- package/lib/wwa_message/__tests__/relative-value.d.ts +1 -0
- package/lib/wwa_message/utils.d.ts +1 -0
- package/lib/wwa_message.d.ts +2 -1
- package/lib/wwa_monster.d.ts +4 -2
- package/lib/wwa_parts_player.d.ts +7 -3
- package/lib/wwa_picture/WWAPictureItem.d.ts +38 -0
- package/lib/wwa_picture/config.d.ts +8 -0
- package/lib/wwa_picture/index.d.ts +24 -0
- package/lib/wwa_picture/typedef.d.ts +9 -0
- package/lib/wwa_picture/utils.d.ts +6 -0
- package/lib/wwa_util.d.ts +3 -0
- package/lib/wwa_vardump/user-variable/user-variable-card/index.d.ts +0 -1
- package/lib/wwa_vardump/user-variable/user-variable-list/index.d.ts +2 -2
- package/lib/wwa_vardump/user-variable/user-variable-list-section/index.d.ts +2 -2
- package/package.json +12 -11
package/LICENSE
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
The MIT License (MIT)
|
|
2
2
|
|
|
3
3
|
Copyright (c) 1996-2015 NAO
|
|
4
|
-
Copyright (c) 2015-
|
|
4
|
+
Copyright (c) 2015-2024 WWA Wing Team
|
|
5
5
|
|
|
6
6
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
7
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -63,6 +63,9 @@ function createPlayPageConfig(mapDataName: string, cssName?: string, isClassicMo
|
|
|
63
63
|
enable: true,
|
|
64
64
|
viewportFitEnable: true,
|
|
65
65
|
controllerId: "virtualpad-controller"
|
|
66
|
+
},
|
|
67
|
+
debugConsole: {
|
|
68
|
+
|
|
66
69
|
}
|
|
67
70
|
},
|
|
68
71
|
resources: {
|
|
@@ -70,7 +73,8 @@ function createPlayPageConfig(mapDataName: string, cssName?: string, isClassicMo
|
|
|
70
73
|
wwaJs: isDev ? "wwa.long.js" : "wwa.js",
|
|
71
74
|
wwaCss: cssName,
|
|
72
75
|
titleImage: "cover.gif",
|
|
73
|
-
userVarNamesFile: `${mapDataName}-vars.json
|
|
76
|
+
userVarNamesFile: `${mapDataName}-vars.json`,
|
|
77
|
+
pictureImageNamesFile: mapDataName === "picture_test" ? `${mapDataName}-picture.json` : undefined,
|
|
74
78
|
},
|
|
75
79
|
},
|
|
76
80
|
copyrights: "official-and-wing"
|
package/debug/maps-config.ts
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
export default [
|
|
6
6
|
{ fileName: "test", title: "テストマップ" },
|
|
7
|
+
{ fileName: "picture_test", title: "テストマップ (ピクチャ機能限定版)" },
|
|
7
8
|
{ fileName: "wwamap", title: "Standard Map" },
|
|
8
9
|
{ fileName: "wwamap", outputPageName: "wwamap-classic", title: "Standard Map (Classic Mode)", cssName: "wwa_classic.css", isClassicMode: true as const },
|
|
9
10
|
{ fileName: "island02", title: "Fantasy Island" },
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|