@forgeax/engine-import 0.1.20 → 0.1.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.
- package/dist/.tsbuildinfo +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/dist/scriptable-pack-output-producers.d.ts.map +1 -1
- package/package.json +7 -7
- package/src/__tests__/scriptable-pack-production-producers.unit.test.ts +5 -1
- package/src/scriptable-pack-output-producers.ts +3 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"scriptable-pack-output-producers.d.ts","sourceRoot":"","sources":["../src/scriptable-pack-output-producers.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,6BAA6B,CAAC;AAkChF,OAAO,EAEL,KAAK,mBAAmB,EACxB,2BAA2B,EAE5B,MAAM,sBAAsB,CAAC;
|
|
1
|
+
{"version":3,"file":"scriptable-pack-output-producers.d.ts","sourceRoot":"","sources":["../src/scriptable-pack-output-producers.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,6BAA6B,CAAC;AAkChF,OAAO,EAEL,KAAK,mBAAmB,EACxB,2BAA2B,EAE5B,MAAM,sBAAsB,CAAC;AAyZ9B,eAAO,MAAM,2BAA2B,qBAIvC,CAAC;AACF,eAAO,MAAM,uBAAuB,qBAA2D,CAAC;AAChG,eAAO,MAAM,0BAA0B,qBAItC,CAAC;AAEF,wBAAgB,8BAA8B,CAC5C,eAAe,GAAE,SAAS,4BAA4B,EAAO,GAC5D,mBAAmB,CAKrB;AAED,wBAAgB,yCAAyC,CACvD,eAAe,GAAE,SAAS,4BAA4B,EAAO,GAC5D,2BAA2B,CAuB7B"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forgeax/engine-import",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.21",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -27,12 +27,12 @@
|
|
|
27
27
|
"LICENSE"
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@forgeax/engine-ddc": "0.1.
|
|
31
|
-
"@forgeax/engine-ecs": "0.1.
|
|
32
|
-
"@forgeax/engine-geometry": "0.1.
|
|
33
|
-
"@forgeax/engine-pack": "0.1.
|
|
34
|
-
"@forgeax/engine-scene": "0.1.
|
|
35
|
-
"@forgeax/engine-types": "0.1.
|
|
30
|
+
"@forgeax/engine-ddc": "0.1.21",
|
|
31
|
+
"@forgeax/engine-ecs": "0.1.21",
|
|
32
|
+
"@forgeax/engine-geometry": "0.1.21",
|
|
33
|
+
"@forgeax/engine-pack": "0.1.21",
|
|
34
|
+
"@forgeax/engine-scene": "0.1.21",
|
|
35
|
+
"@forgeax/engine-types": "0.1.21",
|
|
36
36
|
"@noble/hashes": "^2.2.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
@@ -118,7 +118,11 @@ const matrixAssets = [
|
|
|
118
118
|
atlasHeight: 1,
|
|
119
119
|
},
|
|
120
120
|
} satisfies FontAsset,
|
|
121
|
-
{
|
|
121
|
+
{
|
|
122
|
+
kind: 'render-pipeline',
|
|
123
|
+
pipelineId: 'forgeax::standard',
|
|
124
|
+
renderPath: 'forward',
|
|
125
|
+
} satisfies RenderPipelineAsset,
|
|
122
126
|
{
|
|
123
127
|
kind: 'tileset',
|
|
124
128
|
atlases: [AssetGuid.format(ATLAS_GUID)],
|
|
@@ -111,7 +111,9 @@ function materialProduct(input: AssetOutputInput): AssetOutputProduct {
|
|
|
111
111
|
? new Set<string>(MATERIAL_TEXTURE_SLOTS)
|
|
112
112
|
: new Set(
|
|
113
113
|
material.parameters
|
|
114
|
-
.filter(
|
|
114
|
+
.filter(
|
|
115
|
+
(parameter) => parameter.type === 'texture' || parameter.type === 'texture_cube',
|
|
116
|
+
)
|
|
115
117
|
.map((parameter) => parameter.name),
|
|
116
118
|
);
|
|
117
119
|
|