@almadar/core 10.47.0 → 10.49.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/dist/builders.d.ts +3 -3
- package/dist/builders.js +1 -1
- package/dist/builders.js.map +1 -1
- package/dist/{effect-BZDXo4bV.d.ts → effect-DjMRX8sI.d.ts} +56 -24
- package/dist/entityAccess-dYpx6Ipw.d.ts +54 -0
- package/dist/factory/index.d.ts +4 -4
- package/dist/factory-runtime/index.d.ts +3 -3
- package/dist/factory-runtime/index.js +1 -1
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/index.d.ts +8 -8
- package/dist/index.js +613 -4
- package/dist/index.js.map +1 -1
- package/dist/mock/index.d.ts +4 -4
- package/dist/mock/index.js +19 -1
- package/dist/mock/index.js.map +1 -1
- package/dist/patterns/component-mapping.json +6 -1
- package/dist/patterns/event-contracts.json +1 -1
- package/dist/patterns/index.d.ts +1306 -5
- package/dist/patterns/index.js +594 -3
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/patterns-registry.json +586 -1
- package/dist/patterns/registry.json +586 -1
- package/dist/{schema-CGoLC-m6.d.ts → schema-1bzTH92n.d.ts} +38 -38
- package/dist/{trait-1OkxYkAr.d.ts → trait-DkMVtmED.d.ts} +1 -1
- package/dist/types/index.d.ts +7 -7
- package/dist/types/index.js +2 -1
- package/dist/types/index.js.map +1 -1
- package/dist/{types-By96RdSM.d.ts → types-CUdqUyzi.d.ts} +2 -2
- package/package.json +2 -2
- package/dist/entityAccess-BGnJSqXD.d.ts +0 -33
package/dist/patterns/index.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { A as AnyPatternConfig, h as RenderBinding, F as FieldValue, aY as PatternType } from '../effect-
|
|
2
|
-
export { aR as PATTERN_TYPES, aV as PatternConfig, aW as PatternProps, aX as PatternPropsMap, cL as isValidPatternType } from '../effect-
|
|
1
|
+
import { A as AnyPatternConfig, h as RenderBinding, F as FieldValue, aY as PatternType } from '../effect-DjMRX8sI.js';
|
|
2
|
+
export { aR as PATTERN_TYPES, aV as PatternConfig, aW as PatternProps, aX as PatternPropsMap, cL as isValidPatternType } from '../effect-DjMRX8sI.js';
|
|
3
3
|
import { d as EventPayloadValue, a as EventPayload, J as JsonValue } from '../expression-Yf7qvvOs.js';
|
|
4
4
|
import 'zod';
|
|
5
5
|
|
|
6
6
|
var version$3 = "1.0.0";
|
|
7
|
-
var exportedAt$3 = "2026-
|
|
7
|
+
var exportedAt$3 = "2026-08-01T09:06:41.875Z";
|
|
8
8
|
var patterns = {
|
|
9
9
|
"entity-table": {
|
|
10
10
|
type: "entity-table",
|
|
@@ -41300,6 +41300,18 @@ var patterns = {
|
|
|
41300
41300
|
}
|
|
41301
41301
|
}
|
|
41302
41302
|
},
|
|
41303
|
+
lighting: {
|
|
41304
|
+
types: [
|
|
41305
|
+
"object"
|
|
41306
|
+
],
|
|
41307
|
+
description: "3D scene light rig as data — ambient/directional/hemisphere/point lights + optional 'room' environment for PBR reflections. Omitted → the standard fixed rig."
|
|
41308
|
+
},
|
|
41309
|
+
post: {
|
|
41310
|
+
types: [
|
|
41311
|
+
"object"
|
|
41312
|
+
],
|
|
41313
|
+
description: "3D post-processing stack — bloom (emissive glow / neon) and vignette. Omitted → no post pass."
|
|
41314
|
+
},
|
|
41303
41315
|
tileClickEvent: {
|
|
41304
41316
|
types: [
|
|
41305
41317
|
"string"
|
|
@@ -41908,6 +41920,126 @@ var patterns = {
|
|
|
41908
41920
|
],
|
|
41909
41921
|
description: "Rotation in radians (painter units)."
|
|
41910
41922
|
},
|
|
41923
|
+
rotation: {
|
|
41924
|
+
types: [
|
|
41925
|
+
"array"
|
|
41926
|
+
],
|
|
41927
|
+
description: "Euler rotation `[x, y, z]` in radians (world axes) — per-axis joint rotation for the 3D backend; a group placed at a joint with children authored joint-local IS a bone. The 2D painter applies only the in-plane `z` component, after `rotate`.",
|
|
41928
|
+
items: {
|
|
41929
|
+
types: [
|
|
41930
|
+
"number"
|
|
41931
|
+
]
|
|
41932
|
+
}
|
|
41933
|
+
},
|
|
41934
|
+
bone: {
|
|
41935
|
+
types: [
|
|
41936
|
+
"string"
|
|
41937
|
+
],
|
|
41938
|
+
description: "Skeleton bone name. A named group is addressable by a `draw-mesh` `skin` block (smooth skinning): the skinned mesh deforms with this group's animated transform. Names resolve within the nearest enclosing `skeleton: true` group (falling back to the canvas), so multiple instances of one rig never collide. Distinct from `id` (the hit-test handle)."
|
|
41939
|
+
},
|
|
41940
|
+
skeleton: {
|
|
41941
|
+
types: [
|
|
41942
|
+
"boolean"
|
|
41943
|
+
],
|
|
41944
|
+
description: "Marks this group as a skeleton SCOPE: `bone` names and `skin` bindings in its subtree resolve against each other only — one scope per rig instance."
|
|
41945
|
+
},
|
|
41946
|
+
animation: {
|
|
41947
|
+
types: [
|
|
41948
|
+
"object"
|
|
41949
|
+
],
|
|
41950
|
+
description: "Keyframe animation over the group TRANSFORM tracks (`offsetX/Y/Z` in cells, `rotateX/Y/Z` in radians, `scale`; the 2D painter also honors `opacity`) — children inherit it, so nested animated groups form a joint chain. Material tracks belong on leaf meshes.",
|
|
41951
|
+
properties: {
|
|
41952
|
+
durationMs: {
|
|
41953
|
+
types: [
|
|
41954
|
+
"number"
|
|
41955
|
+
]
|
|
41956
|
+
},
|
|
41957
|
+
loop: {
|
|
41958
|
+
types: [
|
|
41959
|
+
"boolean"
|
|
41960
|
+
]
|
|
41961
|
+
},
|
|
41962
|
+
keyframes: {
|
|
41963
|
+
types: [
|
|
41964
|
+
"array"
|
|
41965
|
+
],
|
|
41966
|
+
items: {
|
|
41967
|
+
types: [
|
|
41968
|
+
"object"
|
|
41969
|
+
],
|
|
41970
|
+
properties: {
|
|
41971
|
+
at: {
|
|
41972
|
+
types: [
|
|
41973
|
+
"number"
|
|
41974
|
+
]
|
|
41975
|
+
},
|
|
41976
|
+
offsetX: {
|
|
41977
|
+
types: [
|
|
41978
|
+
"number"
|
|
41979
|
+
]
|
|
41980
|
+
},
|
|
41981
|
+
offsetY: {
|
|
41982
|
+
types: [
|
|
41983
|
+
"number"
|
|
41984
|
+
]
|
|
41985
|
+
},
|
|
41986
|
+
offsetZ: {
|
|
41987
|
+
types: [
|
|
41988
|
+
"number"
|
|
41989
|
+
]
|
|
41990
|
+
},
|
|
41991
|
+
rotateX: {
|
|
41992
|
+
types: [
|
|
41993
|
+
"number"
|
|
41994
|
+
]
|
|
41995
|
+
},
|
|
41996
|
+
rotateY: {
|
|
41997
|
+
types: [
|
|
41998
|
+
"number"
|
|
41999
|
+
]
|
|
42000
|
+
},
|
|
42001
|
+
rotateZ: {
|
|
42002
|
+
types: [
|
|
42003
|
+
"number"
|
|
42004
|
+
]
|
|
42005
|
+
},
|
|
42006
|
+
scale: {
|
|
42007
|
+
types: [
|
|
42008
|
+
"number"
|
|
42009
|
+
]
|
|
42010
|
+
},
|
|
42011
|
+
opacity: {
|
|
42012
|
+
types: [
|
|
42013
|
+
"number"
|
|
42014
|
+
]
|
|
42015
|
+
},
|
|
42016
|
+
emissiveIntensity: {
|
|
42017
|
+
types: [
|
|
42018
|
+
"number"
|
|
42019
|
+
]
|
|
42020
|
+
},
|
|
42021
|
+
color: {
|
|
42022
|
+
types: [
|
|
42023
|
+
"string"
|
|
42024
|
+
]
|
|
42025
|
+
},
|
|
42026
|
+
emissive: {
|
|
42027
|
+
types: [
|
|
42028
|
+
"string"
|
|
42029
|
+
]
|
|
42030
|
+
}
|
|
42031
|
+
},
|
|
42032
|
+
required: [
|
|
42033
|
+
"at"
|
|
42034
|
+
]
|
|
42035
|
+
}
|
|
42036
|
+
}
|
|
42037
|
+
},
|
|
42038
|
+
propertyRequired: [
|
|
42039
|
+
"durationMs",
|
|
42040
|
+
"keyframes"
|
|
42041
|
+
]
|
|
42042
|
+
},
|
|
41911
42043
|
opacity: {
|
|
41912
42044
|
types: [
|
|
41913
42045
|
"number"
|
|
@@ -41990,6 +42122,459 @@ var patterns = {
|
|
|
41990
42122
|
description: "Additional CSS classes applied to the trigger button"
|
|
41991
42123
|
}
|
|
41992
42124
|
}
|
|
42125
|
+
},
|
|
42126
|
+
"draw-mesh": {
|
|
42127
|
+
type: "draw-mesh",
|
|
42128
|
+
category: "game",
|
|
42129
|
+
tier: "atoms",
|
|
42130
|
+
family: "game",
|
|
42131
|
+
description: "DrawMesh component",
|
|
42132
|
+
suggestedFor: [
|
|
42133
|
+
"draw",
|
|
42134
|
+
"mesh",
|
|
42135
|
+
"draw mesh"
|
|
42136
|
+
],
|
|
42137
|
+
typicalSize: "small",
|
|
42138
|
+
propsSchema: {
|
|
42139
|
+
id: {
|
|
42140
|
+
types: [
|
|
42141
|
+
"string"
|
|
42142
|
+
],
|
|
42143
|
+
description: "Optional source-tagged hit-test handle — the host indexes the drawable's ScenePos→id so a pointer/raycast at that cell resolves to this id (unit/entity click). No id → the host emits only the coordinate (tile click)."
|
|
42144
|
+
},
|
|
42145
|
+
type: {
|
|
42146
|
+
types: [
|
|
42147
|
+
"unknown"
|
|
42148
|
+
],
|
|
42149
|
+
description: "type prop",
|
|
42150
|
+
required: true
|
|
42151
|
+
},
|
|
42152
|
+
shape: {
|
|
42153
|
+
types: [
|
|
42154
|
+
"string"
|
|
42155
|
+
],
|
|
42156
|
+
description: "shape prop",
|
|
42157
|
+
required: true,
|
|
42158
|
+
enumValues: [
|
|
42159
|
+
"box",
|
|
42160
|
+
"sphere",
|
|
42161
|
+
"capsule",
|
|
42162
|
+
"cylinder",
|
|
42163
|
+
"cone",
|
|
42164
|
+
"torus",
|
|
42165
|
+
"plane",
|
|
42166
|
+
"circle",
|
|
42167
|
+
"polyhedron"
|
|
42168
|
+
]
|
|
42169
|
+
},
|
|
42170
|
+
position: {
|
|
42171
|
+
types: [
|
|
42172
|
+
"object"
|
|
42173
|
+
],
|
|
42174
|
+
description: "Logical scene position; `z` is height in cells (projected to world Y).",
|
|
42175
|
+
required: true,
|
|
42176
|
+
properties: {
|
|
42177
|
+
x: {
|
|
42178
|
+
types: [
|
|
42179
|
+
"number"
|
|
42180
|
+
]
|
|
42181
|
+
},
|
|
42182
|
+
y: {
|
|
42183
|
+
types: [
|
|
42184
|
+
"number"
|
|
42185
|
+
]
|
|
42186
|
+
},
|
|
42187
|
+
z: {
|
|
42188
|
+
types: [
|
|
42189
|
+
"number"
|
|
42190
|
+
]
|
|
42191
|
+
}
|
|
42192
|
+
},
|
|
42193
|
+
propertyRequired: [
|
|
42194
|
+
"x",
|
|
42195
|
+
"y"
|
|
42196
|
+
],
|
|
42197
|
+
scenePos: true
|
|
42198
|
+
},
|
|
42199
|
+
width: {
|
|
42200
|
+
types: [
|
|
42201
|
+
"number"
|
|
42202
|
+
],
|
|
42203
|
+
description: "Box/plane X extent in cells (default 1)."
|
|
42204
|
+
},
|
|
42205
|
+
height: {
|
|
42206
|
+
types: [
|
|
42207
|
+
"number"
|
|
42208
|
+
],
|
|
42209
|
+
description: "Box Y (height) extent / capsule-cylinder-cone length in cells (default 1)."
|
|
42210
|
+
},
|
|
42211
|
+
depth: {
|
|
42212
|
+
types: [
|
|
42213
|
+
"number"
|
|
42214
|
+
],
|
|
42215
|
+
description: "Box/plane Z extent in cells (default `width`)."
|
|
42216
|
+
},
|
|
42217
|
+
radius: {
|
|
42218
|
+
types: [
|
|
42219
|
+
"number"
|
|
42220
|
+
],
|
|
42221
|
+
description: "Sphere/capsule/cone/torus/circle radius in cells (default 0.4)."
|
|
42222
|
+
},
|
|
42223
|
+
radiusTop: {
|
|
42224
|
+
types: [
|
|
42225
|
+
"number"
|
|
42226
|
+
],
|
|
42227
|
+
description: "Cylinder top radius (default `radius`)."
|
|
42228
|
+
},
|
|
42229
|
+
radiusBottom: {
|
|
42230
|
+
types: [
|
|
42231
|
+
"number"
|
|
42232
|
+
],
|
|
42233
|
+
description: "Cylinder bottom radius (default `radius`)."
|
|
42234
|
+
},
|
|
42235
|
+
tube: {
|
|
42236
|
+
types: [
|
|
42237
|
+
"number"
|
|
42238
|
+
],
|
|
42239
|
+
description: "Torus tube radius in cells (default `radius` / 3)."
|
|
42240
|
+
},
|
|
42241
|
+
segments: {
|
|
42242
|
+
types: [
|
|
42243
|
+
"number"
|
|
42244
|
+
],
|
|
42245
|
+
description: "Curved-surface tessellation, clamped 3..64 (default 24). 4–8 + `flatShading` = low-poly."
|
|
42246
|
+
},
|
|
42247
|
+
vertices: {
|
|
42248
|
+
types: [
|
|
42249
|
+
"array"
|
|
42250
|
+
],
|
|
42251
|
+
description: "`polyhedron` only: raw vertices as scene-frame `[x, y, z]` triples in cells, `z` = up.",
|
|
42252
|
+
items: {
|
|
42253
|
+
types: [
|
|
42254
|
+
"array"
|
|
42255
|
+
],
|
|
42256
|
+
items: {
|
|
42257
|
+
types: [
|
|
42258
|
+
"number"
|
|
42259
|
+
]
|
|
42260
|
+
}
|
|
42261
|
+
}
|
|
42262
|
+
},
|
|
42263
|
+
faces: {
|
|
42264
|
+
types: [
|
|
42265
|
+
"array"
|
|
42266
|
+
],
|
|
42267
|
+
description: "`polyhedron` only: triangle index triples into `vertices`, wound counter-clockwise seen from OUTSIDE in the scene frame.",
|
|
42268
|
+
items: {
|
|
42269
|
+
types: [
|
|
42270
|
+
"array"
|
|
42271
|
+
],
|
|
42272
|
+
items: {
|
|
42273
|
+
types: [
|
|
42274
|
+
"number"
|
|
42275
|
+
]
|
|
42276
|
+
}
|
|
42277
|
+
}
|
|
42278
|
+
},
|
|
42279
|
+
skin: {
|
|
42280
|
+
types: [
|
|
42281
|
+
"object"
|
|
42282
|
+
],
|
|
42283
|
+
description: "`polyhedron` only: smooth-skinning weights binding the vertices to named bone groups. Vertices must then be authored in BIND POSE model space; the bones' animated transforms deform them.",
|
|
42284
|
+
properties: {
|
|
42285
|
+
bones: {
|
|
42286
|
+
types: [
|
|
42287
|
+
"array"
|
|
42288
|
+
],
|
|
42289
|
+
items: {
|
|
42290
|
+
types: [
|
|
42291
|
+
"string"
|
|
42292
|
+
]
|
|
42293
|
+
}
|
|
42294
|
+
},
|
|
42295
|
+
inverseBindMatrices: {
|
|
42296
|
+
types: [
|
|
42297
|
+
"array"
|
|
42298
|
+
],
|
|
42299
|
+
items: {
|
|
42300
|
+
types: [
|
|
42301
|
+
"array"
|
|
42302
|
+
],
|
|
42303
|
+
items: {
|
|
42304
|
+
types: [
|
|
42305
|
+
"number"
|
|
42306
|
+
]
|
|
42307
|
+
}
|
|
42308
|
+
}
|
|
42309
|
+
},
|
|
42310
|
+
indices: {
|
|
42311
|
+
types: [
|
|
42312
|
+
"array"
|
|
42313
|
+
],
|
|
42314
|
+
items: {
|
|
42315
|
+
types: [
|
|
42316
|
+
"array"
|
|
42317
|
+
],
|
|
42318
|
+
items: {
|
|
42319
|
+
types: [
|
|
42320
|
+
"number"
|
|
42321
|
+
]
|
|
42322
|
+
}
|
|
42323
|
+
}
|
|
42324
|
+
},
|
|
42325
|
+
weights: {
|
|
42326
|
+
types: [
|
|
42327
|
+
"array"
|
|
42328
|
+
],
|
|
42329
|
+
items: {
|
|
42330
|
+
types: [
|
|
42331
|
+
"array"
|
|
42332
|
+
],
|
|
42333
|
+
items: {
|
|
42334
|
+
types: [
|
|
42335
|
+
"number"
|
|
42336
|
+
]
|
|
42337
|
+
}
|
|
42338
|
+
}
|
|
42339
|
+
}
|
|
42340
|
+
},
|
|
42341
|
+
propertyRequired: [
|
|
42342
|
+
"bones",
|
|
42343
|
+
"inverseBindMatrices",
|
|
42344
|
+
"indices",
|
|
42345
|
+
"weights"
|
|
42346
|
+
]
|
|
42347
|
+
},
|
|
42348
|
+
rotation: {
|
|
42349
|
+
types: [
|
|
42350
|
+
"array"
|
|
42351
|
+
],
|
|
42352
|
+
description: "Euler rotation `[x, y, z]` in radians.",
|
|
42353
|
+
items: {
|
|
42354
|
+
types: [
|
|
42355
|
+
"number"
|
|
42356
|
+
]
|
|
42357
|
+
}
|
|
42358
|
+
},
|
|
42359
|
+
pivot: {
|
|
42360
|
+
types: [
|
|
42361
|
+
"string"
|
|
42362
|
+
],
|
|
42363
|
+
description: "`bottom` (default) rests the mesh on its position's ground plane; `center` centers it there. For `polyhedron`, `bottom` lifts by −min(z) and `center` applies no offset — the vertices are authoritative.",
|
|
42364
|
+
enumValues: [
|
|
42365
|
+
"bottom",
|
|
42366
|
+
"center"
|
|
42367
|
+
]
|
|
42368
|
+
},
|
|
42369
|
+
material: {
|
|
42370
|
+
types: [
|
|
42371
|
+
"object"
|
|
42372
|
+
],
|
|
42373
|
+
description: "material prop",
|
|
42374
|
+
properties: {
|
|
42375
|
+
kind: {
|
|
42376
|
+
types: [
|
|
42377
|
+
"string"
|
|
42378
|
+
],
|
|
42379
|
+
enumValues: [
|
|
42380
|
+
"standard",
|
|
42381
|
+
"physical",
|
|
42382
|
+
"toon",
|
|
42383
|
+
"basic"
|
|
42384
|
+
]
|
|
42385
|
+
},
|
|
42386
|
+
color: {
|
|
42387
|
+
types: [
|
|
42388
|
+
"string"
|
|
42389
|
+
]
|
|
42390
|
+
},
|
|
42391
|
+
metalness: {
|
|
42392
|
+
types: [
|
|
42393
|
+
"number"
|
|
42394
|
+
]
|
|
42395
|
+
},
|
|
42396
|
+
roughness: {
|
|
42397
|
+
types: [
|
|
42398
|
+
"number"
|
|
42399
|
+
]
|
|
42400
|
+
},
|
|
42401
|
+
emissive: {
|
|
42402
|
+
types: [
|
|
42403
|
+
"string"
|
|
42404
|
+
]
|
|
42405
|
+
},
|
|
42406
|
+
emissiveIntensity: {
|
|
42407
|
+
types: [
|
|
42408
|
+
"number"
|
|
42409
|
+
]
|
|
42410
|
+
},
|
|
42411
|
+
opacity: {
|
|
42412
|
+
types: [
|
|
42413
|
+
"number"
|
|
42414
|
+
]
|
|
42415
|
+
},
|
|
42416
|
+
transmission: {
|
|
42417
|
+
types: [
|
|
42418
|
+
"number"
|
|
42419
|
+
]
|
|
42420
|
+
},
|
|
42421
|
+
ior: {
|
|
42422
|
+
types: [
|
|
42423
|
+
"number"
|
|
42424
|
+
]
|
|
42425
|
+
},
|
|
42426
|
+
flatShading: {
|
|
42427
|
+
types: [
|
|
42428
|
+
"boolean"
|
|
42429
|
+
]
|
|
42430
|
+
},
|
|
42431
|
+
side: {
|
|
42432
|
+
types: [
|
|
42433
|
+
"string"
|
|
42434
|
+
],
|
|
42435
|
+
enumValues: [
|
|
42436
|
+
"front",
|
|
42437
|
+
"back",
|
|
42438
|
+
"double"
|
|
42439
|
+
]
|
|
42440
|
+
}
|
|
42441
|
+
}
|
|
42442
|
+
},
|
|
42443
|
+
outline: {
|
|
42444
|
+
types: [
|
|
42445
|
+
"object"
|
|
42446
|
+
],
|
|
42447
|
+
description: "outline prop",
|
|
42448
|
+
properties: {
|
|
42449
|
+
color: {
|
|
42450
|
+
types: [
|
|
42451
|
+
"string"
|
|
42452
|
+
]
|
|
42453
|
+
},
|
|
42454
|
+
width: {
|
|
42455
|
+
types: [
|
|
42456
|
+
"number"
|
|
42457
|
+
]
|
|
42458
|
+
}
|
|
42459
|
+
}
|
|
42460
|
+
},
|
|
42461
|
+
castShadow: {
|
|
42462
|
+
types: [
|
|
42463
|
+
"boolean"
|
|
42464
|
+
],
|
|
42465
|
+
description: "castShadow prop"
|
|
42466
|
+
},
|
|
42467
|
+
receiveShadow: {
|
|
42468
|
+
types: [
|
|
42469
|
+
"boolean"
|
|
42470
|
+
],
|
|
42471
|
+
description: "receiveShadow prop"
|
|
42472
|
+
},
|
|
42473
|
+
animation: {
|
|
42474
|
+
types: [
|
|
42475
|
+
"object"
|
|
42476
|
+
],
|
|
42477
|
+
description: "Keyframe animation over transform/material tracks; the 3D host runs it per frame.",
|
|
42478
|
+
properties: {
|
|
42479
|
+
durationMs: {
|
|
42480
|
+
types: [
|
|
42481
|
+
"number"
|
|
42482
|
+
]
|
|
42483
|
+
},
|
|
42484
|
+
loop: {
|
|
42485
|
+
types: [
|
|
42486
|
+
"boolean"
|
|
42487
|
+
]
|
|
42488
|
+
},
|
|
42489
|
+
keyframes: {
|
|
42490
|
+
types: [
|
|
42491
|
+
"array"
|
|
42492
|
+
],
|
|
42493
|
+
items: {
|
|
42494
|
+
types: [
|
|
42495
|
+
"object"
|
|
42496
|
+
],
|
|
42497
|
+
properties: {
|
|
42498
|
+
at: {
|
|
42499
|
+
types: [
|
|
42500
|
+
"number"
|
|
42501
|
+
]
|
|
42502
|
+
},
|
|
42503
|
+
offsetX: {
|
|
42504
|
+
types: [
|
|
42505
|
+
"number"
|
|
42506
|
+
]
|
|
42507
|
+
},
|
|
42508
|
+
offsetY: {
|
|
42509
|
+
types: [
|
|
42510
|
+
"number"
|
|
42511
|
+
]
|
|
42512
|
+
},
|
|
42513
|
+
offsetZ: {
|
|
42514
|
+
types: [
|
|
42515
|
+
"number"
|
|
42516
|
+
]
|
|
42517
|
+
},
|
|
42518
|
+
rotateX: {
|
|
42519
|
+
types: [
|
|
42520
|
+
"number"
|
|
42521
|
+
]
|
|
42522
|
+
},
|
|
42523
|
+
rotateY: {
|
|
42524
|
+
types: [
|
|
42525
|
+
"number"
|
|
42526
|
+
]
|
|
42527
|
+
},
|
|
42528
|
+
rotateZ: {
|
|
42529
|
+
types: [
|
|
42530
|
+
"number"
|
|
42531
|
+
]
|
|
42532
|
+
},
|
|
42533
|
+
scale: {
|
|
42534
|
+
types: [
|
|
42535
|
+
"number"
|
|
42536
|
+
]
|
|
42537
|
+
},
|
|
42538
|
+
opacity: {
|
|
42539
|
+
types: [
|
|
42540
|
+
"number"
|
|
42541
|
+
]
|
|
42542
|
+
},
|
|
42543
|
+
emissiveIntensity: {
|
|
42544
|
+
types: [
|
|
42545
|
+
"number"
|
|
42546
|
+
]
|
|
42547
|
+
},
|
|
42548
|
+
color: {
|
|
42549
|
+
types: [
|
|
42550
|
+
"string"
|
|
42551
|
+
]
|
|
42552
|
+
},
|
|
42553
|
+
emissive: {
|
|
42554
|
+
types: [
|
|
42555
|
+
"string"
|
|
42556
|
+
]
|
|
42557
|
+
}
|
|
42558
|
+
},
|
|
42559
|
+
required: [
|
|
42560
|
+
"at"
|
|
42561
|
+
]
|
|
42562
|
+
}
|
|
42563
|
+
}
|
|
42564
|
+
},
|
|
42565
|
+
propertyRequired: [
|
|
42566
|
+
"durationMs",
|
|
42567
|
+
"keyframes"
|
|
42568
|
+
]
|
|
42569
|
+
},
|
|
42570
|
+
opacity: {
|
|
42571
|
+
types: [
|
|
42572
|
+
"number"
|
|
42573
|
+
],
|
|
42574
|
+
description: "0..1 opacity; multiplies the material and enclosing group opacity."
|
|
42575
|
+
}
|
|
42576
|
+
},
|
|
42577
|
+
drawable: true
|
|
41993
42578
|
}
|
|
41994
42579
|
};
|
|
41995
42580
|
var categories$1 = [
|
|
@@ -42917,7 +43502,7 @@ var integratorsRegistry = {
|
|
|
42917
43502
|
};
|
|
42918
43503
|
|
|
42919
43504
|
var version$1 = "1.0.0";
|
|
42920
|
-
var exportedAt$1 = "2026-
|
|
43505
|
+
var exportedAt$1 = "2026-08-01T09:06:41.875Z";
|
|
42921
43506
|
var mappings = {
|
|
42922
43507
|
"page-header": {
|
|
42923
43508
|
component: "PageHeader",
|
|
@@ -44300,6 +44885,11 @@ var mappings = {
|
|
|
44300
44885
|
component: "EmojiPicker",
|
|
44301
44886
|
importPath: "@/components/core/molecules/EmojiPicker",
|
|
44302
44887
|
category: "component"
|
|
44888
|
+
},
|
|
44889
|
+
"draw-mesh": {
|
|
44890
|
+
component: "DrawMesh",
|
|
44891
|
+
importPath: "@/components/game/atoms/DrawMesh",
|
|
44892
|
+
category: "game"
|
|
44303
44893
|
}
|
|
44304
44894
|
};
|
|
44305
44895
|
var componentMapping = {
|
|
@@ -44309,7 +44899,7 @@ var componentMapping = {
|
|
|
44309
44899
|
};
|
|
44310
44900
|
|
|
44311
44901
|
var version = "1.0.0";
|
|
44312
|
-
var exportedAt = "2026-
|
|
44902
|
+
var exportedAt = "2026-08-01T09:06:41.875Z";
|
|
44313
44903
|
var contracts = {
|
|
44314
44904
|
form: {
|
|
44315
44905
|
emits: [
|
|
@@ -71214,6 +71804,14 @@ declare const registry: {
|
|
|
71214
71804
|
};
|
|
71215
71805
|
};
|
|
71216
71806
|
};
|
|
71807
|
+
lighting: {
|
|
71808
|
+
types: string[];
|
|
71809
|
+
description: string;
|
|
71810
|
+
};
|
|
71811
|
+
post: {
|
|
71812
|
+
types: string[];
|
|
71813
|
+
description: string;
|
|
71814
|
+
};
|
|
71217
71815
|
tileClickEvent: {
|
|
71218
71816
|
types: string[];
|
|
71219
71817
|
description: string;
|
|
@@ -71599,6 +72197,79 @@ declare const registry: {
|
|
|
71599
72197
|
types: string[];
|
|
71600
72198
|
description: string;
|
|
71601
72199
|
};
|
|
72200
|
+
rotation: {
|
|
72201
|
+
types: string[];
|
|
72202
|
+
description: string;
|
|
72203
|
+
items: {
|
|
72204
|
+
types: string[];
|
|
72205
|
+
};
|
|
72206
|
+
};
|
|
72207
|
+
bone: {
|
|
72208
|
+
types: string[];
|
|
72209
|
+
description: string;
|
|
72210
|
+
};
|
|
72211
|
+
skeleton: {
|
|
72212
|
+
types: string[];
|
|
72213
|
+
description: string;
|
|
72214
|
+
};
|
|
72215
|
+
animation: {
|
|
72216
|
+
types: string[];
|
|
72217
|
+
description: string;
|
|
72218
|
+
properties: {
|
|
72219
|
+
durationMs: {
|
|
72220
|
+
types: string[];
|
|
72221
|
+
};
|
|
72222
|
+
loop: {
|
|
72223
|
+
types: string[];
|
|
72224
|
+
};
|
|
72225
|
+
keyframes: {
|
|
72226
|
+
types: string[];
|
|
72227
|
+
items: {
|
|
72228
|
+
types: string[];
|
|
72229
|
+
properties: {
|
|
72230
|
+
at: {
|
|
72231
|
+
types: string[];
|
|
72232
|
+
};
|
|
72233
|
+
offsetX: {
|
|
72234
|
+
types: string[];
|
|
72235
|
+
};
|
|
72236
|
+
offsetY: {
|
|
72237
|
+
types: string[];
|
|
72238
|
+
};
|
|
72239
|
+
offsetZ: {
|
|
72240
|
+
types: string[];
|
|
72241
|
+
};
|
|
72242
|
+
rotateX: {
|
|
72243
|
+
types: string[];
|
|
72244
|
+
};
|
|
72245
|
+
rotateY: {
|
|
72246
|
+
types: string[];
|
|
72247
|
+
};
|
|
72248
|
+
rotateZ: {
|
|
72249
|
+
types: string[];
|
|
72250
|
+
};
|
|
72251
|
+
scale: {
|
|
72252
|
+
types: string[];
|
|
72253
|
+
};
|
|
72254
|
+
opacity: {
|
|
72255
|
+
types: string[];
|
|
72256
|
+
};
|
|
72257
|
+
emissiveIntensity: {
|
|
72258
|
+
types: string[];
|
|
72259
|
+
};
|
|
72260
|
+
color: {
|
|
72261
|
+
types: string[];
|
|
72262
|
+
};
|
|
72263
|
+
emissive: {
|
|
72264
|
+
types: string[];
|
|
72265
|
+
};
|
|
72266
|
+
};
|
|
72267
|
+
required: string[];
|
|
72268
|
+
};
|
|
72269
|
+
};
|
|
72270
|
+
};
|
|
72271
|
+
propertyRequired: string[];
|
|
72272
|
+
};
|
|
71602
72273
|
opacity: {
|
|
71603
72274
|
types: string[];
|
|
71604
72275
|
description: string;
|
|
@@ -71656,6 +72327,278 @@ declare const registry: {
|
|
|
71656
72327
|
};
|
|
71657
72328
|
};
|
|
71658
72329
|
};
|
|
72330
|
+
"draw-mesh": {
|
|
72331
|
+
type: string;
|
|
72332
|
+
category: string;
|
|
72333
|
+
tier: string;
|
|
72334
|
+
family: string;
|
|
72335
|
+
description: string;
|
|
72336
|
+
suggestedFor: string[];
|
|
72337
|
+
typicalSize: string;
|
|
72338
|
+
propsSchema: {
|
|
72339
|
+
id: {
|
|
72340
|
+
types: string[];
|
|
72341
|
+
description: string;
|
|
72342
|
+
};
|
|
72343
|
+
type: {
|
|
72344
|
+
types: string[];
|
|
72345
|
+
description: string;
|
|
72346
|
+
required: boolean;
|
|
72347
|
+
};
|
|
72348
|
+
shape: {
|
|
72349
|
+
types: string[];
|
|
72350
|
+
description: string;
|
|
72351
|
+
required: boolean;
|
|
72352
|
+
enumValues: string[];
|
|
72353
|
+
};
|
|
72354
|
+
position: {
|
|
72355
|
+
types: string[];
|
|
72356
|
+
description: string;
|
|
72357
|
+
required: boolean;
|
|
72358
|
+
properties: {
|
|
72359
|
+
x: {
|
|
72360
|
+
types: string[];
|
|
72361
|
+
};
|
|
72362
|
+
y: {
|
|
72363
|
+
types: string[];
|
|
72364
|
+
};
|
|
72365
|
+
z: {
|
|
72366
|
+
types: string[];
|
|
72367
|
+
};
|
|
72368
|
+
};
|
|
72369
|
+
propertyRequired: string[];
|
|
72370
|
+
scenePos: boolean;
|
|
72371
|
+
};
|
|
72372
|
+
width: {
|
|
72373
|
+
types: string[];
|
|
72374
|
+
description: string;
|
|
72375
|
+
};
|
|
72376
|
+
height: {
|
|
72377
|
+
types: string[];
|
|
72378
|
+
description: string;
|
|
72379
|
+
};
|
|
72380
|
+
depth: {
|
|
72381
|
+
types: string[];
|
|
72382
|
+
description: string;
|
|
72383
|
+
};
|
|
72384
|
+
radius: {
|
|
72385
|
+
types: string[];
|
|
72386
|
+
description: string;
|
|
72387
|
+
};
|
|
72388
|
+
radiusTop: {
|
|
72389
|
+
types: string[];
|
|
72390
|
+
description: string;
|
|
72391
|
+
};
|
|
72392
|
+
radiusBottom: {
|
|
72393
|
+
types: string[];
|
|
72394
|
+
description: string;
|
|
72395
|
+
};
|
|
72396
|
+
tube: {
|
|
72397
|
+
types: string[];
|
|
72398
|
+
description: string;
|
|
72399
|
+
};
|
|
72400
|
+
segments: {
|
|
72401
|
+
types: string[];
|
|
72402
|
+
description: string;
|
|
72403
|
+
};
|
|
72404
|
+
vertices: {
|
|
72405
|
+
types: string[];
|
|
72406
|
+
description: string;
|
|
72407
|
+
items: {
|
|
72408
|
+
types: string[];
|
|
72409
|
+
items: {
|
|
72410
|
+
types: string[];
|
|
72411
|
+
};
|
|
72412
|
+
};
|
|
72413
|
+
};
|
|
72414
|
+
faces: {
|
|
72415
|
+
types: string[];
|
|
72416
|
+
description: string;
|
|
72417
|
+
items: {
|
|
72418
|
+
types: string[];
|
|
72419
|
+
items: {
|
|
72420
|
+
types: string[];
|
|
72421
|
+
};
|
|
72422
|
+
};
|
|
72423
|
+
};
|
|
72424
|
+
skin: {
|
|
72425
|
+
types: string[];
|
|
72426
|
+
description: string;
|
|
72427
|
+
properties: {
|
|
72428
|
+
bones: {
|
|
72429
|
+
types: string[];
|
|
72430
|
+
items: {
|
|
72431
|
+
types: string[];
|
|
72432
|
+
};
|
|
72433
|
+
};
|
|
72434
|
+
inverseBindMatrices: {
|
|
72435
|
+
types: string[];
|
|
72436
|
+
items: {
|
|
72437
|
+
types: string[];
|
|
72438
|
+
items: {
|
|
72439
|
+
types: string[];
|
|
72440
|
+
};
|
|
72441
|
+
};
|
|
72442
|
+
};
|
|
72443
|
+
indices: {
|
|
72444
|
+
types: string[];
|
|
72445
|
+
items: {
|
|
72446
|
+
types: string[];
|
|
72447
|
+
items: {
|
|
72448
|
+
types: string[];
|
|
72449
|
+
};
|
|
72450
|
+
};
|
|
72451
|
+
};
|
|
72452
|
+
weights: {
|
|
72453
|
+
types: string[];
|
|
72454
|
+
items: {
|
|
72455
|
+
types: string[];
|
|
72456
|
+
items: {
|
|
72457
|
+
types: string[];
|
|
72458
|
+
};
|
|
72459
|
+
};
|
|
72460
|
+
};
|
|
72461
|
+
};
|
|
72462
|
+
propertyRequired: string[];
|
|
72463
|
+
};
|
|
72464
|
+
rotation: {
|
|
72465
|
+
types: string[];
|
|
72466
|
+
description: string;
|
|
72467
|
+
items: {
|
|
72468
|
+
types: string[];
|
|
72469
|
+
};
|
|
72470
|
+
};
|
|
72471
|
+
pivot: {
|
|
72472
|
+
types: string[];
|
|
72473
|
+
description: string;
|
|
72474
|
+
enumValues: string[];
|
|
72475
|
+
};
|
|
72476
|
+
material: {
|
|
72477
|
+
types: string[];
|
|
72478
|
+
description: string;
|
|
72479
|
+
properties: {
|
|
72480
|
+
kind: {
|
|
72481
|
+
types: string[];
|
|
72482
|
+
enumValues: string[];
|
|
72483
|
+
};
|
|
72484
|
+
color: {
|
|
72485
|
+
types: string[];
|
|
72486
|
+
};
|
|
72487
|
+
metalness: {
|
|
72488
|
+
types: string[];
|
|
72489
|
+
};
|
|
72490
|
+
roughness: {
|
|
72491
|
+
types: string[];
|
|
72492
|
+
};
|
|
72493
|
+
emissive: {
|
|
72494
|
+
types: string[];
|
|
72495
|
+
};
|
|
72496
|
+
emissiveIntensity: {
|
|
72497
|
+
types: string[];
|
|
72498
|
+
};
|
|
72499
|
+
opacity: {
|
|
72500
|
+
types: string[];
|
|
72501
|
+
};
|
|
72502
|
+
transmission: {
|
|
72503
|
+
types: string[];
|
|
72504
|
+
};
|
|
72505
|
+
ior: {
|
|
72506
|
+
types: string[];
|
|
72507
|
+
};
|
|
72508
|
+
flatShading: {
|
|
72509
|
+
types: string[];
|
|
72510
|
+
};
|
|
72511
|
+
side: {
|
|
72512
|
+
types: string[];
|
|
72513
|
+
enumValues: string[];
|
|
72514
|
+
};
|
|
72515
|
+
};
|
|
72516
|
+
};
|
|
72517
|
+
outline: {
|
|
72518
|
+
types: string[];
|
|
72519
|
+
description: string;
|
|
72520
|
+
properties: {
|
|
72521
|
+
color: {
|
|
72522
|
+
types: string[];
|
|
72523
|
+
};
|
|
72524
|
+
width: {
|
|
72525
|
+
types: string[];
|
|
72526
|
+
};
|
|
72527
|
+
};
|
|
72528
|
+
};
|
|
72529
|
+
castShadow: {
|
|
72530
|
+
types: string[];
|
|
72531
|
+
description: string;
|
|
72532
|
+
};
|
|
72533
|
+
receiveShadow: {
|
|
72534
|
+
types: string[];
|
|
72535
|
+
description: string;
|
|
72536
|
+
};
|
|
72537
|
+
animation: {
|
|
72538
|
+
types: string[];
|
|
72539
|
+
description: string;
|
|
72540
|
+
properties: {
|
|
72541
|
+
durationMs: {
|
|
72542
|
+
types: string[];
|
|
72543
|
+
};
|
|
72544
|
+
loop: {
|
|
72545
|
+
types: string[];
|
|
72546
|
+
};
|
|
72547
|
+
keyframes: {
|
|
72548
|
+
types: string[];
|
|
72549
|
+
items: {
|
|
72550
|
+
types: string[];
|
|
72551
|
+
properties: {
|
|
72552
|
+
at: {
|
|
72553
|
+
types: string[];
|
|
72554
|
+
};
|
|
72555
|
+
offsetX: {
|
|
72556
|
+
types: string[];
|
|
72557
|
+
};
|
|
72558
|
+
offsetY: {
|
|
72559
|
+
types: string[];
|
|
72560
|
+
};
|
|
72561
|
+
offsetZ: {
|
|
72562
|
+
types: string[];
|
|
72563
|
+
};
|
|
72564
|
+
rotateX: {
|
|
72565
|
+
types: string[];
|
|
72566
|
+
};
|
|
72567
|
+
rotateY: {
|
|
72568
|
+
types: string[];
|
|
72569
|
+
};
|
|
72570
|
+
rotateZ: {
|
|
72571
|
+
types: string[];
|
|
72572
|
+
};
|
|
72573
|
+
scale: {
|
|
72574
|
+
types: string[];
|
|
72575
|
+
};
|
|
72576
|
+
opacity: {
|
|
72577
|
+
types: string[];
|
|
72578
|
+
};
|
|
72579
|
+
emissiveIntensity: {
|
|
72580
|
+
types: string[];
|
|
72581
|
+
};
|
|
72582
|
+
color: {
|
|
72583
|
+
types: string[];
|
|
72584
|
+
};
|
|
72585
|
+
emissive: {
|
|
72586
|
+
types: string[];
|
|
72587
|
+
};
|
|
72588
|
+
};
|
|
72589
|
+
required: string[];
|
|
72590
|
+
};
|
|
72591
|
+
};
|
|
72592
|
+
};
|
|
72593
|
+
propertyRequired: string[];
|
|
72594
|
+
};
|
|
72595
|
+
opacity: {
|
|
72596
|
+
types: string[];
|
|
72597
|
+
description: string;
|
|
72598
|
+
};
|
|
72599
|
+
};
|
|
72600
|
+
drawable: boolean;
|
|
72601
|
+
};
|
|
71659
72602
|
};
|
|
71660
72603
|
categories: string[];
|
|
71661
72604
|
};
|
|
@@ -96834,6 +97777,14 @@ declare const PATTERN_REGISTRY: {
|
|
|
96834
97777
|
};
|
|
96835
97778
|
};
|
|
96836
97779
|
};
|
|
97780
|
+
lighting: {
|
|
97781
|
+
types: string[];
|
|
97782
|
+
description: string;
|
|
97783
|
+
};
|
|
97784
|
+
post: {
|
|
97785
|
+
types: string[];
|
|
97786
|
+
description: string;
|
|
97787
|
+
};
|
|
96837
97788
|
tileClickEvent: {
|
|
96838
97789
|
types: string[];
|
|
96839
97790
|
description: string;
|
|
@@ -97219,6 +98170,79 @@ declare const PATTERN_REGISTRY: {
|
|
|
97219
98170
|
types: string[];
|
|
97220
98171
|
description: string;
|
|
97221
98172
|
};
|
|
98173
|
+
rotation: {
|
|
98174
|
+
types: string[];
|
|
98175
|
+
description: string;
|
|
98176
|
+
items: {
|
|
98177
|
+
types: string[];
|
|
98178
|
+
};
|
|
98179
|
+
};
|
|
98180
|
+
bone: {
|
|
98181
|
+
types: string[];
|
|
98182
|
+
description: string;
|
|
98183
|
+
};
|
|
98184
|
+
skeleton: {
|
|
98185
|
+
types: string[];
|
|
98186
|
+
description: string;
|
|
98187
|
+
};
|
|
98188
|
+
animation: {
|
|
98189
|
+
types: string[];
|
|
98190
|
+
description: string;
|
|
98191
|
+
properties: {
|
|
98192
|
+
durationMs: {
|
|
98193
|
+
types: string[];
|
|
98194
|
+
};
|
|
98195
|
+
loop: {
|
|
98196
|
+
types: string[];
|
|
98197
|
+
};
|
|
98198
|
+
keyframes: {
|
|
98199
|
+
types: string[];
|
|
98200
|
+
items: {
|
|
98201
|
+
types: string[];
|
|
98202
|
+
properties: {
|
|
98203
|
+
at: {
|
|
98204
|
+
types: string[];
|
|
98205
|
+
};
|
|
98206
|
+
offsetX: {
|
|
98207
|
+
types: string[];
|
|
98208
|
+
};
|
|
98209
|
+
offsetY: {
|
|
98210
|
+
types: string[];
|
|
98211
|
+
};
|
|
98212
|
+
offsetZ: {
|
|
98213
|
+
types: string[];
|
|
98214
|
+
};
|
|
98215
|
+
rotateX: {
|
|
98216
|
+
types: string[];
|
|
98217
|
+
};
|
|
98218
|
+
rotateY: {
|
|
98219
|
+
types: string[];
|
|
98220
|
+
};
|
|
98221
|
+
rotateZ: {
|
|
98222
|
+
types: string[];
|
|
98223
|
+
};
|
|
98224
|
+
scale: {
|
|
98225
|
+
types: string[];
|
|
98226
|
+
};
|
|
98227
|
+
opacity: {
|
|
98228
|
+
types: string[];
|
|
98229
|
+
};
|
|
98230
|
+
emissiveIntensity: {
|
|
98231
|
+
types: string[];
|
|
98232
|
+
};
|
|
98233
|
+
color: {
|
|
98234
|
+
types: string[];
|
|
98235
|
+
};
|
|
98236
|
+
emissive: {
|
|
98237
|
+
types: string[];
|
|
98238
|
+
};
|
|
98239
|
+
};
|
|
98240
|
+
required: string[];
|
|
98241
|
+
};
|
|
98242
|
+
};
|
|
98243
|
+
};
|
|
98244
|
+
propertyRequired: string[];
|
|
98245
|
+
};
|
|
97222
98246
|
opacity: {
|
|
97223
98247
|
types: string[];
|
|
97224
98248
|
description: string;
|
|
@@ -97276,6 +98300,278 @@ declare const PATTERN_REGISTRY: {
|
|
|
97276
98300
|
};
|
|
97277
98301
|
};
|
|
97278
98302
|
};
|
|
98303
|
+
"draw-mesh": {
|
|
98304
|
+
type: string;
|
|
98305
|
+
category: string;
|
|
98306
|
+
tier: string;
|
|
98307
|
+
family: string;
|
|
98308
|
+
description: string;
|
|
98309
|
+
suggestedFor: string[];
|
|
98310
|
+
typicalSize: string;
|
|
98311
|
+
propsSchema: {
|
|
98312
|
+
id: {
|
|
98313
|
+
types: string[];
|
|
98314
|
+
description: string;
|
|
98315
|
+
};
|
|
98316
|
+
type: {
|
|
98317
|
+
types: string[];
|
|
98318
|
+
description: string;
|
|
98319
|
+
required: boolean;
|
|
98320
|
+
};
|
|
98321
|
+
shape: {
|
|
98322
|
+
types: string[];
|
|
98323
|
+
description: string;
|
|
98324
|
+
required: boolean;
|
|
98325
|
+
enumValues: string[];
|
|
98326
|
+
};
|
|
98327
|
+
position: {
|
|
98328
|
+
types: string[];
|
|
98329
|
+
description: string;
|
|
98330
|
+
required: boolean;
|
|
98331
|
+
properties: {
|
|
98332
|
+
x: {
|
|
98333
|
+
types: string[];
|
|
98334
|
+
};
|
|
98335
|
+
y: {
|
|
98336
|
+
types: string[];
|
|
98337
|
+
};
|
|
98338
|
+
z: {
|
|
98339
|
+
types: string[];
|
|
98340
|
+
};
|
|
98341
|
+
};
|
|
98342
|
+
propertyRequired: string[];
|
|
98343
|
+
scenePos: boolean;
|
|
98344
|
+
};
|
|
98345
|
+
width: {
|
|
98346
|
+
types: string[];
|
|
98347
|
+
description: string;
|
|
98348
|
+
};
|
|
98349
|
+
height: {
|
|
98350
|
+
types: string[];
|
|
98351
|
+
description: string;
|
|
98352
|
+
};
|
|
98353
|
+
depth: {
|
|
98354
|
+
types: string[];
|
|
98355
|
+
description: string;
|
|
98356
|
+
};
|
|
98357
|
+
radius: {
|
|
98358
|
+
types: string[];
|
|
98359
|
+
description: string;
|
|
98360
|
+
};
|
|
98361
|
+
radiusTop: {
|
|
98362
|
+
types: string[];
|
|
98363
|
+
description: string;
|
|
98364
|
+
};
|
|
98365
|
+
radiusBottom: {
|
|
98366
|
+
types: string[];
|
|
98367
|
+
description: string;
|
|
98368
|
+
};
|
|
98369
|
+
tube: {
|
|
98370
|
+
types: string[];
|
|
98371
|
+
description: string;
|
|
98372
|
+
};
|
|
98373
|
+
segments: {
|
|
98374
|
+
types: string[];
|
|
98375
|
+
description: string;
|
|
98376
|
+
};
|
|
98377
|
+
vertices: {
|
|
98378
|
+
types: string[];
|
|
98379
|
+
description: string;
|
|
98380
|
+
items: {
|
|
98381
|
+
types: string[];
|
|
98382
|
+
items: {
|
|
98383
|
+
types: string[];
|
|
98384
|
+
};
|
|
98385
|
+
};
|
|
98386
|
+
};
|
|
98387
|
+
faces: {
|
|
98388
|
+
types: string[];
|
|
98389
|
+
description: string;
|
|
98390
|
+
items: {
|
|
98391
|
+
types: string[];
|
|
98392
|
+
items: {
|
|
98393
|
+
types: string[];
|
|
98394
|
+
};
|
|
98395
|
+
};
|
|
98396
|
+
};
|
|
98397
|
+
skin: {
|
|
98398
|
+
types: string[];
|
|
98399
|
+
description: string;
|
|
98400
|
+
properties: {
|
|
98401
|
+
bones: {
|
|
98402
|
+
types: string[];
|
|
98403
|
+
items: {
|
|
98404
|
+
types: string[];
|
|
98405
|
+
};
|
|
98406
|
+
};
|
|
98407
|
+
inverseBindMatrices: {
|
|
98408
|
+
types: string[];
|
|
98409
|
+
items: {
|
|
98410
|
+
types: string[];
|
|
98411
|
+
items: {
|
|
98412
|
+
types: string[];
|
|
98413
|
+
};
|
|
98414
|
+
};
|
|
98415
|
+
};
|
|
98416
|
+
indices: {
|
|
98417
|
+
types: string[];
|
|
98418
|
+
items: {
|
|
98419
|
+
types: string[];
|
|
98420
|
+
items: {
|
|
98421
|
+
types: string[];
|
|
98422
|
+
};
|
|
98423
|
+
};
|
|
98424
|
+
};
|
|
98425
|
+
weights: {
|
|
98426
|
+
types: string[];
|
|
98427
|
+
items: {
|
|
98428
|
+
types: string[];
|
|
98429
|
+
items: {
|
|
98430
|
+
types: string[];
|
|
98431
|
+
};
|
|
98432
|
+
};
|
|
98433
|
+
};
|
|
98434
|
+
};
|
|
98435
|
+
propertyRequired: string[];
|
|
98436
|
+
};
|
|
98437
|
+
rotation: {
|
|
98438
|
+
types: string[];
|
|
98439
|
+
description: string;
|
|
98440
|
+
items: {
|
|
98441
|
+
types: string[];
|
|
98442
|
+
};
|
|
98443
|
+
};
|
|
98444
|
+
pivot: {
|
|
98445
|
+
types: string[];
|
|
98446
|
+
description: string;
|
|
98447
|
+
enumValues: string[];
|
|
98448
|
+
};
|
|
98449
|
+
material: {
|
|
98450
|
+
types: string[];
|
|
98451
|
+
description: string;
|
|
98452
|
+
properties: {
|
|
98453
|
+
kind: {
|
|
98454
|
+
types: string[];
|
|
98455
|
+
enumValues: string[];
|
|
98456
|
+
};
|
|
98457
|
+
color: {
|
|
98458
|
+
types: string[];
|
|
98459
|
+
};
|
|
98460
|
+
metalness: {
|
|
98461
|
+
types: string[];
|
|
98462
|
+
};
|
|
98463
|
+
roughness: {
|
|
98464
|
+
types: string[];
|
|
98465
|
+
};
|
|
98466
|
+
emissive: {
|
|
98467
|
+
types: string[];
|
|
98468
|
+
};
|
|
98469
|
+
emissiveIntensity: {
|
|
98470
|
+
types: string[];
|
|
98471
|
+
};
|
|
98472
|
+
opacity: {
|
|
98473
|
+
types: string[];
|
|
98474
|
+
};
|
|
98475
|
+
transmission: {
|
|
98476
|
+
types: string[];
|
|
98477
|
+
};
|
|
98478
|
+
ior: {
|
|
98479
|
+
types: string[];
|
|
98480
|
+
};
|
|
98481
|
+
flatShading: {
|
|
98482
|
+
types: string[];
|
|
98483
|
+
};
|
|
98484
|
+
side: {
|
|
98485
|
+
types: string[];
|
|
98486
|
+
enumValues: string[];
|
|
98487
|
+
};
|
|
98488
|
+
};
|
|
98489
|
+
};
|
|
98490
|
+
outline: {
|
|
98491
|
+
types: string[];
|
|
98492
|
+
description: string;
|
|
98493
|
+
properties: {
|
|
98494
|
+
color: {
|
|
98495
|
+
types: string[];
|
|
98496
|
+
};
|
|
98497
|
+
width: {
|
|
98498
|
+
types: string[];
|
|
98499
|
+
};
|
|
98500
|
+
};
|
|
98501
|
+
};
|
|
98502
|
+
castShadow: {
|
|
98503
|
+
types: string[];
|
|
98504
|
+
description: string;
|
|
98505
|
+
};
|
|
98506
|
+
receiveShadow: {
|
|
98507
|
+
types: string[];
|
|
98508
|
+
description: string;
|
|
98509
|
+
};
|
|
98510
|
+
animation: {
|
|
98511
|
+
types: string[];
|
|
98512
|
+
description: string;
|
|
98513
|
+
properties: {
|
|
98514
|
+
durationMs: {
|
|
98515
|
+
types: string[];
|
|
98516
|
+
};
|
|
98517
|
+
loop: {
|
|
98518
|
+
types: string[];
|
|
98519
|
+
};
|
|
98520
|
+
keyframes: {
|
|
98521
|
+
types: string[];
|
|
98522
|
+
items: {
|
|
98523
|
+
types: string[];
|
|
98524
|
+
properties: {
|
|
98525
|
+
at: {
|
|
98526
|
+
types: string[];
|
|
98527
|
+
};
|
|
98528
|
+
offsetX: {
|
|
98529
|
+
types: string[];
|
|
98530
|
+
};
|
|
98531
|
+
offsetY: {
|
|
98532
|
+
types: string[];
|
|
98533
|
+
};
|
|
98534
|
+
offsetZ: {
|
|
98535
|
+
types: string[];
|
|
98536
|
+
};
|
|
98537
|
+
rotateX: {
|
|
98538
|
+
types: string[];
|
|
98539
|
+
};
|
|
98540
|
+
rotateY: {
|
|
98541
|
+
types: string[];
|
|
98542
|
+
};
|
|
98543
|
+
rotateZ: {
|
|
98544
|
+
types: string[];
|
|
98545
|
+
};
|
|
98546
|
+
scale: {
|
|
98547
|
+
types: string[];
|
|
98548
|
+
};
|
|
98549
|
+
opacity: {
|
|
98550
|
+
types: string[];
|
|
98551
|
+
};
|
|
98552
|
+
emissiveIntensity: {
|
|
98553
|
+
types: string[];
|
|
98554
|
+
};
|
|
98555
|
+
color: {
|
|
98556
|
+
types: string[];
|
|
98557
|
+
};
|
|
98558
|
+
emissive: {
|
|
98559
|
+
types: string[];
|
|
98560
|
+
};
|
|
98561
|
+
};
|
|
98562
|
+
required: string[];
|
|
98563
|
+
};
|
|
98564
|
+
};
|
|
98565
|
+
};
|
|
98566
|
+
propertyRequired: string[];
|
|
98567
|
+
};
|
|
98568
|
+
opacity: {
|
|
98569
|
+
types: string[];
|
|
98570
|
+
description: string;
|
|
98571
|
+
};
|
|
98572
|
+
};
|
|
98573
|
+
drawable: boolean;
|
|
98574
|
+
};
|
|
97279
98575
|
};
|
|
97280
98576
|
categories: string[];
|
|
97281
98577
|
};
|
|
@@ -99359,6 +100655,11 @@ declare const COMPONENT_MAPPING: {
|
|
|
99359
100655
|
importPath: string;
|
|
99360
100656
|
category: string;
|
|
99361
100657
|
};
|
|
100658
|
+
"draw-mesh": {
|
|
100659
|
+
component: string;
|
|
100660
|
+
importPath: string;
|
|
100661
|
+
category: string;
|
|
100662
|
+
};
|
|
99362
100663
|
};
|
|
99363
100664
|
};
|
|
99364
100665
|
declare const EVENT_CONTRACTS: {
|