@almadar/core 10.48.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-DiHGegt9.d.ts → effect-DjMRX8sI.d.ts} +16 -8
- 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 +246 -6
- 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 +1 -1
- package/dist/patterns/event-contracts.json +1 -1
- package/dist/patterns/index.d.ts +495 -7
- package/dist/patterns/index.js +227 -5
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/patterns-registry.json +225 -3
- package/dist/patterns/registry.json +225 -3
- package/dist/{schema-C0QwW3G2.d.ts → schema-1bzTH92n.d.ts} +2 -2
- package/dist/{trait-pw49W-zL.d.ts → trait-DkMVtmED.d.ts} +1 -1
- package/dist/types/index.d.ts +7 -7
- package/dist/types/index.js +1 -1
- package/dist/types/index.js.map +1 -1
- package/dist/{types-1DvdNPye.d.ts → types-CUdqUyzi.d.ts} +2 -2
- package/package.json +2 -2
- package/dist/entityAccess-OjD7XSBO.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",
|
|
@@ -41920,6 +41920,126 @@ var patterns = {
|
|
|
41920
41920
|
],
|
|
41921
41921
|
description: "Rotation in radians (painter units)."
|
|
41922
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
|
+
},
|
|
41923
42043
|
opacity: {
|
|
41924
42044
|
types: [
|
|
41925
42045
|
"number"
|
|
@@ -42043,7 +42163,8 @@ var patterns = {
|
|
|
42043
42163
|
"cone",
|
|
42044
42164
|
"torus",
|
|
42045
42165
|
"plane",
|
|
42046
|
-
"circle"
|
|
42166
|
+
"circle",
|
|
42167
|
+
"polyhedron"
|
|
42047
42168
|
]
|
|
42048
42169
|
},
|
|
42049
42170
|
position: {
|
|
@@ -42123,6 +42244,107 @@ var patterns = {
|
|
|
42123
42244
|
],
|
|
42124
42245
|
description: "Curved-surface tessellation, clamped 3..64 (default 24). 4–8 + `flatShading` = low-poly."
|
|
42125
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
|
+
},
|
|
42126
42348
|
rotation: {
|
|
42127
42349
|
types: [
|
|
42128
42350
|
"array"
|
|
@@ -42138,7 +42360,7 @@ var patterns = {
|
|
|
42138
42360
|
types: [
|
|
42139
42361
|
"string"
|
|
42140
42362
|
],
|
|
42141
|
-
description: "`bottom` (default) rests the mesh on its position's ground plane; `center` centers it there.",
|
|
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.",
|
|
42142
42364
|
enumValues: [
|
|
42143
42365
|
"bottom",
|
|
42144
42366
|
"center"
|
|
@@ -43280,7 +43502,7 @@ var integratorsRegistry = {
|
|
|
43280
43502
|
};
|
|
43281
43503
|
|
|
43282
43504
|
var version$1 = "1.0.0";
|
|
43283
|
-
var exportedAt$1 = "2026-
|
|
43505
|
+
var exportedAt$1 = "2026-08-01T09:06:41.875Z";
|
|
43284
43506
|
var mappings = {
|
|
43285
43507
|
"page-header": {
|
|
43286
43508
|
component: "PageHeader",
|
|
@@ -44677,7 +44899,7 @@ var componentMapping = {
|
|
|
44677
44899
|
};
|
|
44678
44900
|
|
|
44679
44901
|
var version = "1.0.0";
|
|
44680
|
-
var exportedAt = "2026-
|
|
44902
|
+
var exportedAt = "2026-08-01T09:06:41.875Z";
|
|
44681
44903
|
var contracts = {
|
|
44682
44904
|
form: {
|
|
44683
44905
|
emits: [
|
|
@@ -71975,6 +72197,79 @@ declare const registry: {
|
|
|
71975
72197
|
types: string[];
|
|
71976
72198
|
description: string;
|
|
71977
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
|
+
};
|
|
71978
72273
|
opacity: {
|
|
71979
72274
|
types: string[];
|
|
71980
72275
|
description: string;
|
|
@@ -72106,6 +72401,66 @@ declare const registry: {
|
|
|
72106
72401
|
types: string[];
|
|
72107
72402
|
description: string;
|
|
72108
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
|
+
};
|
|
72109
72464
|
rotation: {
|
|
72110
72465
|
types: string[];
|
|
72111
72466
|
description: string;
|
|
@@ -97815,6 +98170,79 @@ declare const PATTERN_REGISTRY: {
|
|
|
97815
98170
|
types: string[];
|
|
97816
98171
|
description: string;
|
|
97817
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
|
+
};
|
|
97818
98246
|
opacity: {
|
|
97819
98247
|
types: string[];
|
|
97820
98248
|
description: string;
|
|
@@ -97946,6 +98374,66 @@ declare const PATTERN_REGISTRY: {
|
|
|
97946
98374
|
types: string[];
|
|
97947
98375
|
description: string;
|
|
97948
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
|
+
};
|
|
97949
98437
|
rotation: {
|
|
97950
98438
|
types: string[];
|
|
97951
98439
|
description: string;
|