@dcl/playground-assets 7.0.6-3713220614.commit-d02ef9f → 7.0.6-3741197705.commit-bb37667
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/alpha.d.ts +92 -230
- package/dist/beta.d.ts +92 -230
- package/dist/index.bundled.d.ts +92 -230
- package/dist/index.js +155 -174
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/playground/sdk/dcl-sdk.package.json +2 -2
- package/dist/playground-assets.d.ts +92 -230
- package/etc/playground-assets.api.json +658 -1527
- package/etc/playground-assets.api.md +79 -226
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -11989,62 +11989,6 @@
|
|
|
11989
11989
|
/** @public */ const UiTransform$1 = engine => engine.defineComponentFromSchema(UiTransformSchema, UiTransformSchema.COMPONENT_ID);
|
|
11990
11990
|
/** @public */ const VisibilityComponent$1 = engine => engine.defineComponentFromSchema(VisibilityComponentSchema, VisibilityComponentSchema.COMPONENT_ID);
|
|
11991
11991
|
|
|
11992
|
-
/**
|
|
11993
|
-
* @internal
|
|
11994
|
-
*/
|
|
11995
|
-
const COMPONENT_ID = 1;
|
|
11996
|
-
/** @internal */
|
|
11997
|
-
const TRANSFORM_LENGTH = 44;
|
|
11998
|
-
/** @internal */
|
|
11999
|
-
const TransformSchema = {
|
|
12000
|
-
serialize(value, builder) {
|
|
12001
|
-
const ptr = builder.incrementWriteOffset(TRANSFORM_LENGTH);
|
|
12002
|
-
builder.setFloat32(ptr, value.position.x);
|
|
12003
|
-
builder.setFloat32(ptr + 4, value.position.y);
|
|
12004
|
-
builder.setFloat32(ptr + 8, value.position.z);
|
|
12005
|
-
builder.setFloat32(ptr + 12, value.rotation.x);
|
|
12006
|
-
builder.setFloat32(ptr + 16, value.rotation.y);
|
|
12007
|
-
builder.setFloat32(ptr + 20, value.rotation.z);
|
|
12008
|
-
builder.setFloat32(ptr + 24, value.rotation.w);
|
|
12009
|
-
builder.setFloat32(ptr + 28, value.scale.x);
|
|
12010
|
-
builder.setFloat32(ptr + 32, value.scale.y);
|
|
12011
|
-
builder.setFloat32(ptr + 36, value.scale.z);
|
|
12012
|
-
builder.setUint32(ptr + 40, value.parent || 0);
|
|
12013
|
-
},
|
|
12014
|
-
deserialize(reader) {
|
|
12015
|
-
const ptr = reader.incrementReadOffset(TRANSFORM_LENGTH);
|
|
12016
|
-
return {
|
|
12017
|
-
position: {
|
|
12018
|
-
x: reader.getFloat32(ptr),
|
|
12019
|
-
y: reader.getFloat32(ptr + 4),
|
|
12020
|
-
z: reader.getFloat32(ptr + 8)
|
|
12021
|
-
},
|
|
12022
|
-
rotation: {
|
|
12023
|
-
x: reader.getFloat32(ptr + 12),
|
|
12024
|
-
y: reader.getFloat32(ptr + 16),
|
|
12025
|
-
z: reader.getFloat32(ptr + 20),
|
|
12026
|
-
w: reader.getFloat32(ptr + 24)
|
|
12027
|
-
},
|
|
12028
|
-
scale: {
|
|
12029
|
-
x: reader.getFloat32(ptr + 28),
|
|
12030
|
-
y: reader.getFloat32(ptr + 32),
|
|
12031
|
-
z: reader.getFloat32(ptr + 36)
|
|
12032
|
-
},
|
|
12033
|
-
parent: reader.getUint32(ptr + 40)
|
|
12034
|
-
};
|
|
12035
|
-
},
|
|
12036
|
-
create() {
|
|
12037
|
-
return {
|
|
12038
|
-
position: { x: 0, y: 0, z: 0 },
|
|
12039
|
-
scale: { x: 1, y: 1, z: 1 },
|
|
12040
|
-
rotation: { x: 0, y: 0, z: 0, w: 1 }
|
|
12041
|
-
};
|
|
12042
|
-
}
|
|
12043
|
-
};
|
|
12044
|
-
function defineTransformComponent(engine) {
|
|
12045
|
-
return engine.defineComponentFromSchema(TransformSchema, COMPONENT_ID);
|
|
12046
|
-
}
|
|
12047
|
-
|
|
12048
11992
|
function defineAnimatorComponent(engine) {
|
|
12049
11993
|
const theComponent = Animator$2(engine);
|
|
12050
11994
|
/**
|
|
@@ -12103,6 +12047,48 @@
|
|
|
12103
12047
|
};
|
|
12104
12048
|
}
|
|
12105
12049
|
|
|
12050
|
+
const TextureHelper = {
|
|
12051
|
+
Common(texture) {
|
|
12052
|
+
return {
|
|
12053
|
+
tex: {
|
|
12054
|
+
$case: 'texture',
|
|
12055
|
+
texture
|
|
12056
|
+
}
|
|
12057
|
+
};
|
|
12058
|
+
},
|
|
12059
|
+
Avatar(avatarTexture) {
|
|
12060
|
+
return {
|
|
12061
|
+
tex: {
|
|
12062
|
+
$case: 'avatarTexture',
|
|
12063
|
+
avatarTexture
|
|
12064
|
+
}
|
|
12065
|
+
};
|
|
12066
|
+
}
|
|
12067
|
+
};
|
|
12068
|
+
function defineMaterialComponent(engine) {
|
|
12069
|
+
const theComponent = Material$2(engine);
|
|
12070
|
+
return {
|
|
12071
|
+
...theComponent,
|
|
12072
|
+
Texture: TextureHelper,
|
|
12073
|
+
setBasicMaterial(entity, material) {
|
|
12074
|
+
theComponent.createOrReplace(entity, {
|
|
12075
|
+
material: {
|
|
12076
|
+
$case: 'unlit',
|
|
12077
|
+
unlit: material
|
|
12078
|
+
}
|
|
12079
|
+
});
|
|
12080
|
+
},
|
|
12081
|
+
setPbrMaterial(entity, material) {
|
|
12082
|
+
theComponent.createOrReplace(entity, {
|
|
12083
|
+
material: {
|
|
12084
|
+
$case: 'pbr',
|
|
12085
|
+
pbr: material
|
|
12086
|
+
}
|
|
12087
|
+
});
|
|
12088
|
+
}
|
|
12089
|
+
};
|
|
12090
|
+
}
|
|
12091
|
+
|
|
12106
12092
|
function defineMeshColliderComponent(engine) {
|
|
12107
12093
|
const theComponent = MeshCollider$2(engine);
|
|
12108
12094
|
function getCollisionMask(layers) {
|
|
@@ -12171,44 +12157,75 @@
|
|
|
12171
12157
|
};
|
|
12172
12158
|
}
|
|
12173
12159
|
|
|
12174
|
-
|
|
12175
|
-
|
|
12160
|
+
/**
|
|
12161
|
+
* @internal
|
|
12162
|
+
*/
|
|
12163
|
+
const COMPONENT_ID = 1;
|
|
12164
|
+
/** @internal */
|
|
12165
|
+
const TRANSFORM_LENGTH = 44;
|
|
12166
|
+
/** @internal */
|
|
12167
|
+
const TransformSchema = {
|
|
12168
|
+
serialize(value, builder) {
|
|
12169
|
+
const ptr = builder.incrementWriteOffset(TRANSFORM_LENGTH);
|
|
12170
|
+
builder.setFloat32(ptr, value.position.x);
|
|
12171
|
+
builder.setFloat32(ptr + 4, value.position.y);
|
|
12172
|
+
builder.setFloat32(ptr + 8, value.position.z);
|
|
12173
|
+
builder.setFloat32(ptr + 12, value.rotation.x);
|
|
12174
|
+
builder.setFloat32(ptr + 16, value.rotation.y);
|
|
12175
|
+
builder.setFloat32(ptr + 20, value.rotation.z);
|
|
12176
|
+
builder.setFloat32(ptr + 24, value.rotation.w);
|
|
12177
|
+
builder.setFloat32(ptr + 28, value.scale.x);
|
|
12178
|
+
builder.setFloat32(ptr + 32, value.scale.y);
|
|
12179
|
+
builder.setFloat32(ptr + 36, value.scale.z);
|
|
12180
|
+
builder.setUint32(ptr + 40, value.parent || 0);
|
|
12181
|
+
},
|
|
12182
|
+
deserialize(reader) {
|
|
12183
|
+
const ptr = reader.incrementReadOffset(TRANSFORM_LENGTH);
|
|
12176
12184
|
return {
|
|
12177
|
-
|
|
12178
|
-
|
|
12179
|
-
|
|
12180
|
-
|
|
12185
|
+
position: {
|
|
12186
|
+
x: reader.getFloat32(ptr),
|
|
12187
|
+
y: reader.getFloat32(ptr + 4),
|
|
12188
|
+
z: reader.getFloat32(ptr + 8)
|
|
12189
|
+
},
|
|
12190
|
+
rotation: {
|
|
12191
|
+
x: reader.getFloat32(ptr + 12),
|
|
12192
|
+
y: reader.getFloat32(ptr + 16),
|
|
12193
|
+
z: reader.getFloat32(ptr + 20),
|
|
12194
|
+
w: reader.getFloat32(ptr + 24)
|
|
12195
|
+
},
|
|
12196
|
+
scale: {
|
|
12197
|
+
x: reader.getFloat32(ptr + 28),
|
|
12198
|
+
y: reader.getFloat32(ptr + 32),
|
|
12199
|
+
z: reader.getFloat32(ptr + 36)
|
|
12200
|
+
},
|
|
12201
|
+
parent: reader.getUint32(ptr + 40)
|
|
12181
12202
|
};
|
|
12182
12203
|
},
|
|
12183
|
-
|
|
12204
|
+
create() {
|
|
12184
12205
|
return {
|
|
12185
|
-
|
|
12186
|
-
|
|
12187
|
-
|
|
12188
|
-
|
|
12206
|
+
position: { x: 0, y: 0, z: 0 },
|
|
12207
|
+
scale: { x: 1, y: 1, z: 1 },
|
|
12208
|
+
rotation: { x: 0, y: 0, z: 0, w: 1 }
|
|
12209
|
+
};
|
|
12210
|
+
},
|
|
12211
|
+
extend(value) {
|
|
12212
|
+
return {
|
|
12213
|
+
position: { x: 0, y: 0, z: 0 },
|
|
12214
|
+
scale: { x: 1, y: 1, z: 1 },
|
|
12215
|
+
rotation: { x: 0, y: 0, z: 0, w: 1 },
|
|
12216
|
+
...value
|
|
12189
12217
|
};
|
|
12190
12218
|
}
|
|
12191
12219
|
};
|
|
12192
|
-
function
|
|
12193
|
-
const
|
|
12220
|
+
function defineTransformComponent(engine) {
|
|
12221
|
+
const transformDef = engine.defineComponentFromSchema(TransformSchema, COMPONENT_ID);
|
|
12194
12222
|
return {
|
|
12195
|
-
...
|
|
12196
|
-
|
|
12197
|
-
|
|
12198
|
-
theComponent.createOrReplace(entity, {
|
|
12199
|
-
material: {
|
|
12200
|
-
$case: 'unlit',
|
|
12201
|
-
unlit: material
|
|
12202
|
-
}
|
|
12203
|
-
});
|
|
12223
|
+
...transformDef,
|
|
12224
|
+
create(entity, val) {
|
|
12225
|
+
return transformDef.create(entity, val);
|
|
12204
12226
|
},
|
|
12205
|
-
|
|
12206
|
-
|
|
12207
|
-
material: {
|
|
12208
|
-
$case: 'pbr',
|
|
12209
|
-
pbr: material
|
|
12210
|
-
}
|
|
12211
|
-
});
|
|
12227
|
+
createOrReplace(entity, val) {
|
|
12228
|
+
return transformDef.createOrReplace(entity, val);
|
|
12212
12229
|
}
|
|
12213
12230
|
};
|
|
12214
12231
|
}
|
|
@@ -12286,30 +12303,6 @@
|
|
|
12286
12303
|
get YGEdge () { return exports.YGEdge; },
|
|
12287
12304
|
PBUiTransform: PBUiTransform,
|
|
12288
12305
|
PBVisibilityComponent: PBVisibilityComponent,
|
|
12289
|
-
AnimatorSchema: AnimatorSchema,
|
|
12290
|
-
AudioSourceSchema: AudioSourceSchema,
|
|
12291
|
-
AudioStreamSchema: AudioStreamSchema,
|
|
12292
|
-
AvatarAttachSchema: AvatarAttachSchema,
|
|
12293
|
-
AvatarModifierAreaSchema: AvatarModifierAreaSchema,
|
|
12294
|
-
AvatarShapeSchema: AvatarShapeSchema,
|
|
12295
|
-
BillboardSchema: BillboardSchema,
|
|
12296
|
-
CameraModeSchema: CameraModeSchema,
|
|
12297
|
-
CameraModeAreaSchema: CameraModeAreaSchema,
|
|
12298
|
-
GltfContainerSchema: GltfContainerSchema,
|
|
12299
|
-
MaterialSchema: MaterialSchema,
|
|
12300
|
-
MeshColliderSchema: MeshColliderSchema,
|
|
12301
|
-
MeshRendererSchema: MeshRendererSchema,
|
|
12302
|
-
NftShapeSchema: NftShapeSchema,
|
|
12303
|
-
PointerEventsResultSchema: PointerEventsResultSchema,
|
|
12304
|
-
PointerHoverFeedbackSchema: PointerHoverFeedbackSchema,
|
|
12305
|
-
PointerLockSchema: PointerLockSchema,
|
|
12306
|
-
RaycastSchema: RaycastSchema,
|
|
12307
|
-
RaycastResultSchema: RaycastResultSchema,
|
|
12308
|
-
TextShapeSchema: TextShapeSchema,
|
|
12309
|
-
UiBackgroundSchema: UiBackgroundSchema,
|
|
12310
|
-
UiTextSchema: UiTextSchema,
|
|
12311
|
-
UiTransformSchema: UiTransformSchema,
|
|
12312
|
-
VisibilityComponentSchema: VisibilityComponentSchema,
|
|
12313
12306
|
AudioSource: AudioSource$1,
|
|
12314
12307
|
AudioStream: AudioStream$1,
|
|
12315
12308
|
AvatarAttach: AvatarAttach$1,
|
|
@@ -12332,6 +12325,17 @@
|
|
|
12332
12325
|
VisibilityComponent: VisibilityComponent$1
|
|
12333
12326
|
});
|
|
12334
12327
|
|
|
12328
|
+
function checkNotThenable(t, error) {
|
|
12329
|
+
if (globalThis.DEBUG) {
|
|
12330
|
+
if (t &&
|
|
12331
|
+
typeof t === 'object' &&
|
|
12332
|
+
typeof t.then === 'function') {
|
|
12333
|
+
throw new Error(error);
|
|
12334
|
+
}
|
|
12335
|
+
}
|
|
12336
|
+
return t;
|
|
12337
|
+
}
|
|
12338
|
+
|
|
12335
12339
|
/**
|
|
12336
12340
|
* @public
|
|
12337
12341
|
*/
|
|
@@ -12600,7 +12604,7 @@
|
|
|
12600
12604
|
/**
|
|
12601
12605
|
* @public
|
|
12602
12606
|
*/
|
|
12603
|
-
function IMap(spec) {
|
|
12607
|
+
function IMap(spec, defaultValue) {
|
|
12604
12608
|
return {
|
|
12605
12609
|
serialize(value, builder) {
|
|
12606
12610
|
for (const key in spec) {
|
|
@@ -12619,7 +12623,14 @@
|
|
|
12619
12623
|
for (const key in spec) {
|
|
12620
12624
|
newValue[key] = spec[key].create();
|
|
12621
12625
|
}
|
|
12622
|
-
return newValue;
|
|
12626
|
+
return { ...newValue, ...defaultValue };
|
|
12627
|
+
},
|
|
12628
|
+
extend: (base) => {
|
|
12629
|
+
const newValue = {};
|
|
12630
|
+
for (const key in spec) {
|
|
12631
|
+
newValue[key] = spec[key].create();
|
|
12632
|
+
}
|
|
12633
|
+
return { ...newValue, ...defaultValue, ...base };
|
|
12623
12634
|
}
|
|
12624
12635
|
};
|
|
12625
12636
|
}
|
|
@@ -13449,35 +13460,15 @@
|
|
|
13449
13460
|
return Object.freeze({ ...val });
|
|
13450
13461
|
}
|
|
13451
13462
|
|
|
13452
|
-
function defineComponent(componentId, spec
|
|
13463
|
+
function defineComponent(componentId, spec
|
|
13453
13464
|
// meta: { syncFlags }
|
|
13454
13465
|
) {
|
|
13455
13466
|
const data = new Map();
|
|
13456
13467
|
const dirtyIterator = new Set();
|
|
13457
|
-
const defaultBuffer = createByteBuffer();
|
|
13458
|
-
if (constructorDefault) {
|
|
13459
|
-
spec.serialize(constructorDefault, defaultBuffer);
|
|
13460
|
-
}
|
|
13461
|
-
function getDefaultValue() {
|
|
13462
|
-
if (constructorDefault) {
|
|
13463
|
-
return spec.deserialize(createByteBuffer({
|
|
13464
|
-
writing: {
|
|
13465
|
-
buffer: defaultBuffer.buffer(),
|
|
13466
|
-
currentOffset: defaultBuffer.currentWriteOffset()
|
|
13467
|
-
}
|
|
13468
|
-
}));
|
|
13469
|
-
}
|
|
13470
|
-
else {
|
|
13471
|
-
return spec.create();
|
|
13472
|
-
}
|
|
13473
|
-
}
|
|
13474
|
-
function prefillValue(value) {
|
|
13475
|
-
return { ...getDefaultValue(), ...value };
|
|
13476
|
-
}
|
|
13477
13468
|
return {
|
|
13478
13469
|
_id: componentId,
|
|
13479
13470
|
default() {
|
|
13480
|
-
return
|
|
13471
|
+
return spec.create();
|
|
13481
13472
|
},
|
|
13482
13473
|
isDirty(entity) {
|
|
13483
13474
|
return dirtyIterator.has(entity);
|
|
@@ -13512,13 +13503,21 @@
|
|
|
13512
13503
|
if (component) {
|
|
13513
13504
|
throw new Error(`[create] Component ${componentId} for ${entity} already exists`);
|
|
13514
13505
|
}
|
|
13515
|
-
const usedValue = value === undefined
|
|
13506
|
+
const usedValue = value === undefined
|
|
13507
|
+
? spec.create()
|
|
13508
|
+
: spec.extend
|
|
13509
|
+
? spec.extend(value)
|
|
13510
|
+
: value;
|
|
13516
13511
|
data.set(entity, usedValue);
|
|
13517
13512
|
dirtyIterator.add(entity);
|
|
13518
13513
|
return usedValue;
|
|
13519
13514
|
},
|
|
13520
13515
|
createOrReplace(entity, value) {
|
|
13521
|
-
const usedValue = value === undefined
|
|
13516
|
+
const usedValue = value === undefined
|
|
13517
|
+
? spec.create()
|
|
13518
|
+
: spec.extend
|
|
13519
|
+
? spec.extend(value)
|
|
13520
|
+
: value;
|
|
13522
13521
|
data.set(entity, usedValue);
|
|
13523
13522
|
dirtyIterator.add(entity);
|
|
13524
13523
|
return usedValue;
|
|
@@ -13895,17 +13894,6 @@
|
|
|
13895
13894
|
return commandToReturn;
|
|
13896
13895
|
}
|
|
13897
13896
|
|
|
13898
|
-
function checkNotThenable(t, error) {
|
|
13899
|
-
if (globalThis.DEBUG) {
|
|
13900
|
-
if (t &&
|
|
13901
|
-
typeof t === 'object' &&
|
|
13902
|
-
typeof t.then === 'function') {
|
|
13903
|
-
throw new Error(error);
|
|
13904
|
-
}
|
|
13905
|
-
}
|
|
13906
|
-
return t;
|
|
13907
|
-
}
|
|
13908
|
-
|
|
13909
13897
|
function preEngine() {
|
|
13910
13898
|
const entityContainer = EntityContainer();
|
|
13911
13899
|
const componentsDefinition = new Map();
|
|
@@ -13939,18 +13927,35 @@
|
|
|
13939
13927
|
componentsDefinition.set(componentId, component);
|
|
13940
13928
|
return component;
|
|
13941
13929
|
}
|
|
13942
|
-
function defineComponentFromSchema(spec, componentId
|
|
13930
|
+
function defineComponentFromSchema(spec, componentId) {
|
|
13943
13931
|
const prev = componentsDefinition.get(componentId);
|
|
13944
13932
|
if (prev) {
|
|
13945
13933
|
// TODO: assert spec === prev.spec
|
|
13946
13934
|
return prev;
|
|
13947
13935
|
}
|
|
13948
|
-
const newComponent = defineComponent(componentId, spec
|
|
13936
|
+
const newComponent = defineComponent(componentId, spec);
|
|
13949
13937
|
componentsDefinition.set(componentId, newComponent);
|
|
13950
13938
|
return newComponent;
|
|
13951
13939
|
}
|
|
13952
|
-
function defineComponent$1(
|
|
13953
|
-
|
|
13940
|
+
function defineComponent$1(mapSpec, componentId, constructorDefault) {
|
|
13941
|
+
const prev = componentsDefinition.get(componentId);
|
|
13942
|
+
if (prev) {
|
|
13943
|
+
// TODO: assert spec === prev.spec
|
|
13944
|
+
return prev;
|
|
13945
|
+
}
|
|
13946
|
+
const schemaSpec = exports.Schemas.Map(mapSpec, constructorDefault);
|
|
13947
|
+
const def = defineComponent(componentId, schemaSpec);
|
|
13948
|
+
const newComponent = {
|
|
13949
|
+
...def,
|
|
13950
|
+
create(entity, val) {
|
|
13951
|
+
return def.create(entity, val);
|
|
13952
|
+
},
|
|
13953
|
+
createOrReplace(entity, val) {
|
|
13954
|
+
return def.createOrReplace(entity, val);
|
|
13955
|
+
}
|
|
13956
|
+
};
|
|
13957
|
+
componentsDefinition.set(componentId, newComponent);
|
|
13958
|
+
return newComponent;
|
|
13954
13959
|
}
|
|
13955
13960
|
function getComponent(componentId) {
|
|
13956
13961
|
const component = componentsDefinition.get(componentId);
|
|
@@ -40499,41 +40504,27 @@
|
|
|
40499
40504
|
}
|
|
40500
40505
|
|
|
40501
40506
|
exports.Animator = Animator;
|
|
40502
|
-
exports.AnimatorSchema = AnimatorSchema;
|
|
40503
40507
|
exports.AudioSource = AudioSource;
|
|
40504
|
-
exports.AudioSourceSchema = AudioSourceSchema;
|
|
40505
40508
|
exports.AudioStream = AudioStream;
|
|
40506
|
-
exports.AudioStreamSchema = AudioStreamSchema;
|
|
40507
40509
|
exports.AvatarAttach = AvatarAttach;
|
|
40508
|
-
exports.AvatarAttachSchema = AvatarAttachSchema;
|
|
40509
40510
|
exports.AvatarModifierArea = AvatarModifierArea;
|
|
40510
|
-
exports.AvatarModifierAreaSchema = AvatarModifierAreaSchema;
|
|
40511
40511
|
exports.AvatarShape = AvatarShape;
|
|
40512
|
-
exports.AvatarShapeSchema = AvatarShapeSchema;
|
|
40513
40512
|
exports.AvatarTexture = AvatarTexture;
|
|
40514
40513
|
exports.Billboard = Billboard;
|
|
40515
|
-
exports.BillboardSchema = BillboardSchema;
|
|
40516
40514
|
exports.CANVAS_ROOT_ENTITY = CANVAS_ROOT_ENTITY;
|
|
40517
40515
|
exports.CameraMode = CameraMode;
|
|
40518
40516
|
exports.CameraModeArea = CameraModeArea;
|
|
40519
|
-
exports.CameraModeAreaSchema = CameraModeAreaSchema;
|
|
40520
|
-
exports.CameraModeSchema = CameraModeSchema;
|
|
40521
40517
|
exports.Container = Container;
|
|
40522
40518
|
exports.DEG2RAD = DEG2RAD;
|
|
40523
40519
|
exports.Engine = Engine;
|
|
40524
40520
|
exports.EntityContainer = EntityContainer;
|
|
40525
40521
|
exports.Epsilon = Epsilon;
|
|
40526
40522
|
exports.GltfContainer = GltfContainer;
|
|
40527
|
-
exports.GltfContainerSchema = GltfContainerSchema;
|
|
40528
40523
|
exports.Material = Material;
|
|
40529
|
-
exports.MaterialSchema = MaterialSchema;
|
|
40530
40524
|
exports.MeshCollider = MeshCollider;
|
|
40531
|
-
exports.MeshColliderSchema = MeshColliderSchema;
|
|
40532
40525
|
exports.MeshRenderer = MeshRenderer;
|
|
40533
|
-
exports.MeshRendererSchema = MeshRendererSchema;
|
|
40534
40526
|
exports.MessageBus = MessageBus;
|
|
40535
40527
|
exports.NftShape = NftShape;
|
|
40536
|
-
exports.NftShapeSchema = NftShapeSchema;
|
|
40537
40528
|
exports.Observable = Observable;
|
|
40538
40529
|
exports.Observer = Observer;
|
|
40539
40530
|
exports.ObserverEventState = ObserverEventState;
|
|
@@ -40576,35 +40567,25 @@
|
|
|
40576
40567
|
exports.PBUiTransform = PBUiTransform;
|
|
40577
40568
|
exports.PBVisibilityComponent = PBVisibilityComponent;
|
|
40578
40569
|
exports.PointerEventsResult = PointerEventsResult;
|
|
40579
|
-
exports.PointerEventsResultSchema = PointerEventsResultSchema;
|
|
40580
40570
|
exports.PointerHoverFeedback = PointerHoverFeedback;
|
|
40581
|
-
exports.PointerHoverFeedbackSchema = PointerHoverFeedbackSchema;
|
|
40582
40571
|
exports.PointerLock = PointerLock;
|
|
40583
|
-
exports.PointerLockSchema = PointerLockSchema;
|
|
40584
40572
|
exports.RAD2DEG = RAD2DEG;
|
|
40585
40573
|
exports.Raycast = Raycast;
|
|
40586
40574
|
exports.RaycastHit = RaycastHit;
|
|
40587
40575
|
exports.RaycastResult = RaycastResult;
|
|
40588
|
-
exports.RaycastResultSchema = RaycastResultSchema;
|
|
40589
|
-
exports.RaycastSchema = RaycastSchema;
|
|
40590
40576
|
exports.ReactEcs = ReactEcs;
|
|
40591
40577
|
exports.ReactEcsRenderer = ReactEcsRenderer;
|
|
40592
40578
|
exports.TextShape = TextShape;
|
|
40593
|
-
exports.TextShapeSchema = TextShapeSchema;
|
|
40594
40579
|
exports.Texture = Texture;
|
|
40595
40580
|
exports.TextureUnion = TextureUnion;
|
|
40596
40581
|
exports.ToGammaSpace = ToGammaSpace;
|
|
40597
40582
|
exports.ToLinearSpace = ToLinearSpace;
|
|
40598
40583
|
exports.Transform = Transform;
|
|
40599
40584
|
exports.UiBackground = UiBackground;
|
|
40600
|
-
exports.UiBackgroundSchema = UiBackgroundSchema;
|
|
40601
40585
|
exports.UiEntity = UiEntity;
|
|
40602
40586
|
exports.UiText = UiText;
|
|
40603
|
-
exports.UiTextSchema = UiTextSchema;
|
|
40604
40587
|
exports.UiTransform = UiTransform;
|
|
40605
|
-
exports.UiTransformSchema = UiTransformSchema;
|
|
40606
40588
|
exports.VisibilityComponent = VisibilityComponent;
|
|
40607
|
-
exports.VisibilityComponentSchema = VisibilityComponentSchema;
|
|
40608
40589
|
exports.components = index;
|
|
40609
40590
|
exports.createEthereumProvider = createEthereumProvider;
|
|
40610
40591
|
exports.createInputSystem = createInputSystem;
|