@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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "1.0.0",
|
|
3
|
-
"exportedAt": "2026-
|
|
3
|
+
"exportedAt": "2026-08-01T09:06:41.875Z",
|
|
4
4
|
"patterns": {
|
|
5
5
|
"entity-table": {
|
|
6
6
|
"type": "entity-table",
|
|
@@ -41194,6 +41194,18 @@
|
|
|
41194
41194
|
}
|
|
41195
41195
|
}
|
|
41196
41196
|
},
|
|
41197
|
+
"lighting": {
|
|
41198
|
+
"types": [
|
|
41199
|
+
"object"
|
|
41200
|
+
],
|
|
41201
|
+
"description": "3D scene light rig as data — ambient/directional/hemisphere/point lights + optional 'room' environment for PBR reflections. Omitted → the standard fixed rig."
|
|
41202
|
+
},
|
|
41203
|
+
"post": {
|
|
41204
|
+
"types": [
|
|
41205
|
+
"object"
|
|
41206
|
+
],
|
|
41207
|
+
"description": "3D post-processing stack — bloom (emissive glow / neon) and vignette. Omitted → no post pass."
|
|
41208
|
+
},
|
|
41197
41209
|
"tileClickEvent": {
|
|
41198
41210
|
"types": [
|
|
41199
41211
|
"string"
|
|
@@ -41798,6 +41810,126 @@
|
|
|
41798
41810
|
],
|
|
41799
41811
|
"description": "Rotation in radians (painter units)."
|
|
41800
41812
|
},
|
|
41813
|
+
"rotation": {
|
|
41814
|
+
"types": [
|
|
41815
|
+
"array"
|
|
41816
|
+
],
|
|
41817
|
+
"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`.",
|
|
41818
|
+
"items": {
|
|
41819
|
+
"types": [
|
|
41820
|
+
"number"
|
|
41821
|
+
]
|
|
41822
|
+
}
|
|
41823
|
+
},
|
|
41824
|
+
"bone": {
|
|
41825
|
+
"types": [
|
|
41826
|
+
"string"
|
|
41827
|
+
],
|
|
41828
|
+
"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)."
|
|
41829
|
+
},
|
|
41830
|
+
"skeleton": {
|
|
41831
|
+
"types": [
|
|
41832
|
+
"boolean"
|
|
41833
|
+
],
|
|
41834
|
+
"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."
|
|
41835
|
+
},
|
|
41836
|
+
"animation": {
|
|
41837
|
+
"types": [
|
|
41838
|
+
"object"
|
|
41839
|
+
],
|
|
41840
|
+
"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.",
|
|
41841
|
+
"properties": {
|
|
41842
|
+
"durationMs": {
|
|
41843
|
+
"types": [
|
|
41844
|
+
"number"
|
|
41845
|
+
]
|
|
41846
|
+
},
|
|
41847
|
+
"loop": {
|
|
41848
|
+
"types": [
|
|
41849
|
+
"boolean"
|
|
41850
|
+
]
|
|
41851
|
+
},
|
|
41852
|
+
"keyframes": {
|
|
41853
|
+
"types": [
|
|
41854
|
+
"array"
|
|
41855
|
+
],
|
|
41856
|
+
"items": {
|
|
41857
|
+
"types": [
|
|
41858
|
+
"object"
|
|
41859
|
+
],
|
|
41860
|
+
"properties": {
|
|
41861
|
+
"at": {
|
|
41862
|
+
"types": [
|
|
41863
|
+
"number"
|
|
41864
|
+
]
|
|
41865
|
+
},
|
|
41866
|
+
"offsetX": {
|
|
41867
|
+
"types": [
|
|
41868
|
+
"number"
|
|
41869
|
+
]
|
|
41870
|
+
},
|
|
41871
|
+
"offsetY": {
|
|
41872
|
+
"types": [
|
|
41873
|
+
"number"
|
|
41874
|
+
]
|
|
41875
|
+
},
|
|
41876
|
+
"offsetZ": {
|
|
41877
|
+
"types": [
|
|
41878
|
+
"number"
|
|
41879
|
+
]
|
|
41880
|
+
},
|
|
41881
|
+
"rotateX": {
|
|
41882
|
+
"types": [
|
|
41883
|
+
"number"
|
|
41884
|
+
]
|
|
41885
|
+
},
|
|
41886
|
+
"rotateY": {
|
|
41887
|
+
"types": [
|
|
41888
|
+
"number"
|
|
41889
|
+
]
|
|
41890
|
+
},
|
|
41891
|
+
"rotateZ": {
|
|
41892
|
+
"types": [
|
|
41893
|
+
"number"
|
|
41894
|
+
]
|
|
41895
|
+
},
|
|
41896
|
+
"scale": {
|
|
41897
|
+
"types": [
|
|
41898
|
+
"number"
|
|
41899
|
+
]
|
|
41900
|
+
},
|
|
41901
|
+
"opacity": {
|
|
41902
|
+
"types": [
|
|
41903
|
+
"number"
|
|
41904
|
+
]
|
|
41905
|
+
},
|
|
41906
|
+
"emissiveIntensity": {
|
|
41907
|
+
"types": [
|
|
41908
|
+
"number"
|
|
41909
|
+
]
|
|
41910
|
+
},
|
|
41911
|
+
"color": {
|
|
41912
|
+
"types": [
|
|
41913
|
+
"string"
|
|
41914
|
+
]
|
|
41915
|
+
},
|
|
41916
|
+
"emissive": {
|
|
41917
|
+
"types": [
|
|
41918
|
+
"string"
|
|
41919
|
+
]
|
|
41920
|
+
}
|
|
41921
|
+
},
|
|
41922
|
+
"required": [
|
|
41923
|
+
"at"
|
|
41924
|
+
]
|
|
41925
|
+
}
|
|
41926
|
+
}
|
|
41927
|
+
},
|
|
41928
|
+
"propertyRequired": [
|
|
41929
|
+
"durationMs",
|
|
41930
|
+
"keyframes"
|
|
41931
|
+
]
|
|
41932
|
+
},
|
|
41801
41933
|
"opacity": {
|
|
41802
41934
|
"types": [
|
|
41803
41935
|
"number"
|
|
@@ -41880,6 +42012,459 @@
|
|
|
41880
42012
|
"description": "Additional CSS classes applied to the trigger button"
|
|
41881
42013
|
}
|
|
41882
42014
|
}
|
|
42015
|
+
},
|
|
42016
|
+
"draw-mesh": {
|
|
42017
|
+
"type": "draw-mesh",
|
|
42018
|
+
"category": "game",
|
|
42019
|
+
"tier": "atoms",
|
|
42020
|
+
"family": "game",
|
|
42021
|
+
"description": "DrawMesh component",
|
|
42022
|
+
"suggestedFor": [
|
|
42023
|
+
"draw",
|
|
42024
|
+
"mesh",
|
|
42025
|
+
"draw mesh"
|
|
42026
|
+
],
|
|
42027
|
+
"typicalSize": "small",
|
|
42028
|
+
"propsSchema": {
|
|
42029
|
+
"id": {
|
|
42030
|
+
"types": [
|
|
42031
|
+
"string"
|
|
42032
|
+
],
|
|
42033
|
+
"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)."
|
|
42034
|
+
},
|
|
42035
|
+
"type": {
|
|
42036
|
+
"types": [
|
|
42037
|
+
"unknown"
|
|
42038
|
+
],
|
|
42039
|
+
"description": "type prop",
|
|
42040
|
+
"required": true
|
|
42041
|
+
},
|
|
42042
|
+
"shape": {
|
|
42043
|
+
"types": [
|
|
42044
|
+
"string"
|
|
42045
|
+
],
|
|
42046
|
+
"description": "shape prop",
|
|
42047
|
+
"required": true,
|
|
42048
|
+
"enumValues": [
|
|
42049
|
+
"box",
|
|
42050
|
+
"sphere",
|
|
42051
|
+
"capsule",
|
|
42052
|
+
"cylinder",
|
|
42053
|
+
"cone",
|
|
42054
|
+
"torus",
|
|
42055
|
+
"plane",
|
|
42056
|
+
"circle",
|
|
42057
|
+
"polyhedron"
|
|
42058
|
+
]
|
|
42059
|
+
},
|
|
42060
|
+
"position": {
|
|
42061
|
+
"types": [
|
|
42062
|
+
"object"
|
|
42063
|
+
],
|
|
42064
|
+
"description": "Logical scene position; `z` is height in cells (projected to world Y).",
|
|
42065
|
+
"required": true,
|
|
42066
|
+
"properties": {
|
|
42067
|
+
"x": {
|
|
42068
|
+
"types": [
|
|
42069
|
+
"number"
|
|
42070
|
+
]
|
|
42071
|
+
},
|
|
42072
|
+
"y": {
|
|
42073
|
+
"types": [
|
|
42074
|
+
"number"
|
|
42075
|
+
]
|
|
42076
|
+
},
|
|
42077
|
+
"z": {
|
|
42078
|
+
"types": [
|
|
42079
|
+
"number"
|
|
42080
|
+
]
|
|
42081
|
+
}
|
|
42082
|
+
},
|
|
42083
|
+
"propertyRequired": [
|
|
42084
|
+
"x",
|
|
42085
|
+
"y"
|
|
42086
|
+
],
|
|
42087
|
+
"scenePos": true
|
|
42088
|
+
},
|
|
42089
|
+
"width": {
|
|
42090
|
+
"types": [
|
|
42091
|
+
"number"
|
|
42092
|
+
],
|
|
42093
|
+
"description": "Box/plane X extent in cells (default 1)."
|
|
42094
|
+
},
|
|
42095
|
+
"height": {
|
|
42096
|
+
"types": [
|
|
42097
|
+
"number"
|
|
42098
|
+
],
|
|
42099
|
+
"description": "Box Y (height) extent / capsule-cylinder-cone length in cells (default 1)."
|
|
42100
|
+
},
|
|
42101
|
+
"depth": {
|
|
42102
|
+
"types": [
|
|
42103
|
+
"number"
|
|
42104
|
+
],
|
|
42105
|
+
"description": "Box/plane Z extent in cells (default `width`)."
|
|
42106
|
+
},
|
|
42107
|
+
"radius": {
|
|
42108
|
+
"types": [
|
|
42109
|
+
"number"
|
|
42110
|
+
],
|
|
42111
|
+
"description": "Sphere/capsule/cone/torus/circle radius in cells (default 0.4)."
|
|
42112
|
+
},
|
|
42113
|
+
"radiusTop": {
|
|
42114
|
+
"types": [
|
|
42115
|
+
"number"
|
|
42116
|
+
],
|
|
42117
|
+
"description": "Cylinder top radius (default `radius`)."
|
|
42118
|
+
},
|
|
42119
|
+
"radiusBottom": {
|
|
42120
|
+
"types": [
|
|
42121
|
+
"number"
|
|
42122
|
+
],
|
|
42123
|
+
"description": "Cylinder bottom radius (default `radius`)."
|
|
42124
|
+
},
|
|
42125
|
+
"tube": {
|
|
42126
|
+
"types": [
|
|
42127
|
+
"number"
|
|
42128
|
+
],
|
|
42129
|
+
"description": "Torus tube radius in cells (default `radius` / 3)."
|
|
42130
|
+
},
|
|
42131
|
+
"segments": {
|
|
42132
|
+
"types": [
|
|
42133
|
+
"number"
|
|
42134
|
+
],
|
|
42135
|
+
"description": "Curved-surface tessellation, clamped 3..64 (default 24). 4–8 + `flatShading` = low-poly."
|
|
42136
|
+
},
|
|
42137
|
+
"vertices": {
|
|
42138
|
+
"types": [
|
|
42139
|
+
"array"
|
|
42140
|
+
],
|
|
42141
|
+
"description": "`polyhedron` only: raw vertices as scene-frame `[x, y, z]` triples in cells, `z` = up.",
|
|
42142
|
+
"items": {
|
|
42143
|
+
"types": [
|
|
42144
|
+
"array"
|
|
42145
|
+
],
|
|
42146
|
+
"items": {
|
|
42147
|
+
"types": [
|
|
42148
|
+
"number"
|
|
42149
|
+
]
|
|
42150
|
+
}
|
|
42151
|
+
}
|
|
42152
|
+
},
|
|
42153
|
+
"faces": {
|
|
42154
|
+
"types": [
|
|
42155
|
+
"array"
|
|
42156
|
+
],
|
|
42157
|
+
"description": "`polyhedron` only: triangle index triples into `vertices`, wound counter-clockwise seen from OUTSIDE in the scene frame.",
|
|
42158
|
+
"items": {
|
|
42159
|
+
"types": [
|
|
42160
|
+
"array"
|
|
42161
|
+
],
|
|
42162
|
+
"items": {
|
|
42163
|
+
"types": [
|
|
42164
|
+
"number"
|
|
42165
|
+
]
|
|
42166
|
+
}
|
|
42167
|
+
}
|
|
42168
|
+
},
|
|
42169
|
+
"skin": {
|
|
42170
|
+
"types": [
|
|
42171
|
+
"object"
|
|
42172
|
+
],
|
|
42173
|
+
"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.",
|
|
42174
|
+
"properties": {
|
|
42175
|
+
"bones": {
|
|
42176
|
+
"types": [
|
|
42177
|
+
"array"
|
|
42178
|
+
],
|
|
42179
|
+
"items": {
|
|
42180
|
+
"types": [
|
|
42181
|
+
"string"
|
|
42182
|
+
]
|
|
42183
|
+
}
|
|
42184
|
+
},
|
|
42185
|
+
"inverseBindMatrices": {
|
|
42186
|
+
"types": [
|
|
42187
|
+
"array"
|
|
42188
|
+
],
|
|
42189
|
+
"items": {
|
|
42190
|
+
"types": [
|
|
42191
|
+
"array"
|
|
42192
|
+
],
|
|
42193
|
+
"items": {
|
|
42194
|
+
"types": [
|
|
42195
|
+
"number"
|
|
42196
|
+
]
|
|
42197
|
+
}
|
|
42198
|
+
}
|
|
42199
|
+
},
|
|
42200
|
+
"indices": {
|
|
42201
|
+
"types": [
|
|
42202
|
+
"array"
|
|
42203
|
+
],
|
|
42204
|
+
"items": {
|
|
42205
|
+
"types": [
|
|
42206
|
+
"array"
|
|
42207
|
+
],
|
|
42208
|
+
"items": {
|
|
42209
|
+
"types": [
|
|
42210
|
+
"number"
|
|
42211
|
+
]
|
|
42212
|
+
}
|
|
42213
|
+
}
|
|
42214
|
+
},
|
|
42215
|
+
"weights": {
|
|
42216
|
+
"types": [
|
|
42217
|
+
"array"
|
|
42218
|
+
],
|
|
42219
|
+
"items": {
|
|
42220
|
+
"types": [
|
|
42221
|
+
"array"
|
|
42222
|
+
],
|
|
42223
|
+
"items": {
|
|
42224
|
+
"types": [
|
|
42225
|
+
"number"
|
|
42226
|
+
]
|
|
42227
|
+
}
|
|
42228
|
+
}
|
|
42229
|
+
}
|
|
42230
|
+
},
|
|
42231
|
+
"propertyRequired": [
|
|
42232
|
+
"bones",
|
|
42233
|
+
"inverseBindMatrices",
|
|
42234
|
+
"indices",
|
|
42235
|
+
"weights"
|
|
42236
|
+
]
|
|
42237
|
+
},
|
|
42238
|
+
"rotation": {
|
|
42239
|
+
"types": [
|
|
42240
|
+
"array"
|
|
42241
|
+
],
|
|
42242
|
+
"description": "Euler rotation `[x, y, z]` in radians.",
|
|
42243
|
+
"items": {
|
|
42244
|
+
"types": [
|
|
42245
|
+
"number"
|
|
42246
|
+
]
|
|
42247
|
+
}
|
|
42248
|
+
},
|
|
42249
|
+
"pivot": {
|
|
42250
|
+
"types": [
|
|
42251
|
+
"string"
|
|
42252
|
+
],
|
|
42253
|
+
"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.",
|
|
42254
|
+
"enumValues": [
|
|
42255
|
+
"bottom",
|
|
42256
|
+
"center"
|
|
42257
|
+
]
|
|
42258
|
+
},
|
|
42259
|
+
"material": {
|
|
42260
|
+
"types": [
|
|
42261
|
+
"object"
|
|
42262
|
+
],
|
|
42263
|
+
"description": "material prop",
|
|
42264
|
+
"properties": {
|
|
42265
|
+
"kind": {
|
|
42266
|
+
"types": [
|
|
42267
|
+
"string"
|
|
42268
|
+
],
|
|
42269
|
+
"enumValues": [
|
|
42270
|
+
"standard",
|
|
42271
|
+
"physical",
|
|
42272
|
+
"toon",
|
|
42273
|
+
"basic"
|
|
42274
|
+
]
|
|
42275
|
+
},
|
|
42276
|
+
"color": {
|
|
42277
|
+
"types": [
|
|
42278
|
+
"string"
|
|
42279
|
+
]
|
|
42280
|
+
},
|
|
42281
|
+
"metalness": {
|
|
42282
|
+
"types": [
|
|
42283
|
+
"number"
|
|
42284
|
+
]
|
|
42285
|
+
},
|
|
42286
|
+
"roughness": {
|
|
42287
|
+
"types": [
|
|
42288
|
+
"number"
|
|
42289
|
+
]
|
|
42290
|
+
},
|
|
42291
|
+
"emissive": {
|
|
42292
|
+
"types": [
|
|
42293
|
+
"string"
|
|
42294
|
+
]
|
|
42295
|
+
},
|
|
42296
|
+
"emissiveIntensity": {
|
|
42297
|
+
"types": [
|
|
42298
|
+
"number"
|
|
42299
|
+
]
|
|
42300
|
+
},
|
|
42301
|
+
"opacity": {
|
|
42302
|
+
"types": [
|
|
42303
|
+
"number"
|
|
42304
|
+
]
|
|
42305
|
+
},
|
|
42306
|
+
"transmission": {
|
|
42307
|
+
"types": [
|
|
42308
|
+
"number"
|
|
42309
|
+
]
|
|
42310
|
+
},
|
|
42311
|
+
"ior": {
|
|
42312
|
+
"types": [
|
|
42313
|
+
"number"
|
|
42314
|
+
]
|
|
42315
|
+
},
|
|
42316
|
+
"flatShading": {
|
|
42317
|
+
"types": [
|
|
42318
|
+
"boolean"
|
|
42319
|
+
]
|
|
42320
|
+
},
|
|
42321
|
+
"side": {
|
|
42322
|
+
"types": [
|
|
42323
|
+
"string"
|
|
42324
|
+
],
|
|
42325
|
+
"enumValues": [
|
|
42326
|
+
"front",
|
|
42327
|
+
"back",
|
|
42328
|
+
"double"
|
|
42329
|
+
]
|
|
42330
|
+
}
|
|
42331
|
+
}
|
|
42332
|
+
},
|
|
42333
|
+
"outline": {
|
|
42334
|
+
"types": [
|
|
42335
|
+
"object"
|
|
42336
|
+
],
|
|
42337
|
+
"description": "outline prop",
|
|
42338
|
+
"properties": {
|
|
42339
|
+
"color": {
|
|
42340
|
+
"types": [
|
|
42341
|
+
"string"
|
|
42342
|
+
]
|
|
42343
|
+
},
|
|
42344
|
+
"width": {
|
|
42345
|
+
"types": [
|
|
42346
|
+
"number"
|
|
42347
|
+
]
|
|
42348
|
+
}
|
|
42349
|
+
}
|
|
42350
|
+
},
|
|
42351
|
+
"castShadow": {
|
|
42352
|
+
"types": [
|
|
42353
|
+
"boolean"
|
|
42354
|
+
],
|
|
42355
|
+
"description": "castShadow prop"
|
|
42356
|
+
},
|
|
42357
|
+
"receiveShadow": {
|
|
42358
|
+
"types": [
|
|
42359
|
+
"boolean"
|
|
42360
|
+
],
|
|
42361
|
+
"description": "receiveShadow prop"
|
|
42362
|
+
},
|
|
42363
|
+
"animation": {
|
|
42364
|
+
"types": [
|
|
42365
|
+
"object"
|
|
42366
|
+
],
|
|
42367
|
+
"description": "Keyframe animation over transform/material tracks; the 3D host runs it per frame.",
|
|
42368
|
+
"properties": {
|
|
42369
|
+
"durationMs": {
|
|
42370
|
+
"types": [
|
|
42371
|
+
"number"
|
|
42372
|
+
]
|
|
42373
|
+
},
|
|
42374
|
+
"loop": {
|
|
42375
|
+
"types": [
|
|
42376
|
+
"boolean"
|
|
42377
|
+
]
|
|
42378
|
+
},
|
|
42379
|
+
"keyframes": {
|
|
42380
|
+
"types": [
|
|
42381
|
+
"array"
|
|
42382
|
+
],
|
|
42383
|
+
"items": {
|
|
42384
|
+
"types": [
|
|
42385
|
+
"object"
|
|
42386
|
+
],
|
|
42387
|
+
"properties": {
|
|
42388
|
+
"at": {
|
|
42389
|
+
"types": [
|
|
42390
|
+
"number"
|
|
42391
|
+
]
|
|
42392
|
+
},
|
|
42393
|
+
"offsetX": {
|
|
42394
|
+
"types": [
|
|
42395
|
+
"number"
|
|
42396
|
+
]
|
|
42397
|
+
},
|
|
42398
|
+
"offsetY": {
|
|
42399
|
+
"types": [
|
|
42400
|
+
"number"
|
|
42401
|
+
]
|
|
42402
|
+
},
|
|
42403
|
+
"offsetZ": {
|
|
42404
|
+
"types": [
|
|
42405
|
+
"number"
|
|
42406
|
+
]
|
|
42407
|
+
},
|
|
42408
|
+
"rotateX": {
|
|
42409
|
+
"types": [
|
|
42410
|
+
"number"
|
|
42411
|
+
]
|
|
42412
|
+
},
|
|
42413
|
+
"rotateY": {
|
|
42414
|
+
"types": [
|
|
42415
|
+
"number"
|
|
42416
|
+
]
|
|
42417
|
+
},
|
|
42418
|
+
"rotateZ": {
|
|
42419
|
+
"types": [
|
|
42420
|
+
"number"
|
|
42421
|
+
]
|
|
42422
|
+
},
|
|
42423
|
+
"scale": {
|
|
42424
|
+
"types": [
|
|
42425
|
+
"number"
|
|
42426
|
+
]
|
|
42427
|
+
},
|
|
42428
|
+
"opacity": {
|
|
42429
|
+
"types": [
|
|
42430
|
+
"number"
|
|
42431
|
+
]
|
|
42432
|
+
},
|
|
42433
|
+
"emissiveIntensity": {
|
|
42434
|
+
"types": [
|
|
42435
|
+
"number"
|
|
42436
|
+
]
|
|
42437
|
+
},
|
|
42438
|
+
"color": {
|
|
42439
|
+
"types": [
|
|
42440
|
+
"string"
|
|
42441
|
+
]
|
|
42442
|
+
},
|
|
42443
|
+
"emissive": {
|
|
42444
|
+
"types": [
|
|
42445
|
+
"string"
|
|
42446
|
+
]
|
|
42447
|
+
}
|
|
42448
|
+
},
|
|
42449
|
+
"required": [
|
|
42450
|
+
"at"
|
|
42451
|
+
]
|
|
42452
|
+
}
|
|
42453
|
+
}
|
|
42454
|
+
},
|
|
42455
|
+
"propertyRequired": [
|
|
42456
|
+
"durationMs",
|
|
42457
|
+
"keyframes"
|
|
42458
|
+
]
|
|
42459
|
+
},
|
|
42460
|
+
"opacity": {
|
|
42461
|
+
"types": [
|
|
42462
|
+
"number"
|
|
42463
|
+
],
|
|
42464
|
+
"description": "0..1 opacity; multiplies the material and enclosing group opacity."
|
|
42465
|
+
}
|
|
42466
|
+
},
|
|
42467
|
+
"drawable": true
|
|
41883
42468
|
}
|
|
41884
42469
|
},
|
|
41885
42470
|
"categories": [
|