@dcl/playground-assets 7.0.6-3808564125.commit-7a2650b → 7.0.6-3808797047.commit-ee7ea04
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 +12 -12
- package/dist/beta.d.ts +12 -12
- package/dist/index.bundled.d.ts +12 -12
- package/dist/index.js +139 -126
- 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 +8 -2
- package/dist/playground-assets.d.ts +12 -12
- package/etc/playground-assets.api.json +12 -12
- package/etc/playground-assets.api.md +12 -12
- package/package.json +3 -3
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcl/sdk",
|
|
3
|
-
"version": "7.0.6-
|
|
3
|
+
"version": "7.0.6-3808797047.commit-ee7ea04",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"typings": "./index.d.ts",
|
|
@@ -25,5 +25,11 @@
|
|
|
25
25
|
"@dcl/unity-renderer": "1.0.68557-20221221195847.commit-f743b85"
|
|
26
26
|
},
|
|
27
27
|
"minCliVersion": "3.14.1",
|
|
28
|
-
"
|
|
28
|
+
"typedoc": {
|
|
29
|
+
"entryPoint": "./src/index.ts",
|
|
30
|
+
"readmeFile": "./README.md",
|
|
31
|
+
"displayName": "SDK",
|
|
32
|
+
"tsconfig": "./tsconfig.json"
|
|
33
|
+
},
|
|
34
|
+
"commit": "ee7ea0434ecbd9e92db737237a67cd02af989b73"
|
|
29
35
|
}
|
|
@@ -2913,10 +2913,10 @@ export declare const PBGltfContainer: {
|
|
|
2913
2913
|
|
|
2914
2914
|
export declare interface PBMaterial {
|
|
2915
2915
|
material?: {
|
|
2916
|
-
$case:
|
|
2916
|
+
$case: "unlit";
|
|
2917
2917
|
unlit: PBMaterial_UnlitMaterial;
|
|
2918
2918
|
} | {
|
|
2919
|
-
$case:
|
|
2919
|
+
$case: "pbr";
|
|
2920
2920
|
pbr: PBMaterial_PbrMaterial;
|
|
2921
2921
|
};
|
|
2922
2922
|
}
|
|
@@ -2993,16 +2993,16 @@ export declare interface PBMeshCollider {
|
|
|
2993
2993
|
/** default = ColliderLayer.Physics | ColliderLayer.Pointer */
|
|
2994
2994
|
collisionMask?: number | undefined;
|
|
2995
2995
|
mesh?: {
|
|
2996
|
-
$case:
|
|
2996
|
+
$case: "box";
|
|
2997
2997
|
box: PBMeshCollider_BoxMesh;
|
|
2998
2998
|
} | {
|
|
2999
|
-
$case:
|
|
2999
|
+
$case: "sphere";
|
|
3000
3000
|
sphere: PBMeshCollider_SphereMesh;
|
|
3001
3001
|
} | {
|
|
3002
|
-
$case:
|
|
3002
|
+
$case: "cylinder";
|
|
3003
3003
|
cylinder: PBMeshCollider_CylinderMesh;
|
|
3004
3004
|
} | {
|
|
3005
|
-
$case:
|
|
3005
|
+
$case: "plane";
|
|
3006
3006
|
plane: PBMeshCollider_PlaneMesh;
|
|
3007
3007
|
};
|
|
3008
3008
|
}
|
|
@@ -3065,16 +3065,16 @@ export declare const PBMeshCollider_SphereMesh: {
|
|
|
3065
3065
|
|
|
3066
3066
|
export declare interface PBMeshRenderer {
|
|
3067
3067
|
mesh?: {
|
|
3068
|
-
$case:
|
|
3068
|
+
$case: "box";
|
|
3069
3069
|
box: PBMeshRenderer_BoxMesh;
|
|
3070
3070
|
} | {
|
|
3071
|
-
$case:
|
|
3071
|
+
$case: "sphere";
|
|
3072
3072
|
sphere: PBMeshRenderer_SphereMesh;
|
|
3073
3073
|
} | {
|
|
3074
|
-
$case:
|
|
3074
|
+
$case: "cylinder";
|
|
3075
3075
|
cylinder: PBMeshRenderer_CylinderMesh;
|
|
3076
3076
|
} | {
|
|
3077
|
-
$case:
|
|
3077
|
+
$case: "plane";
|
|
3078
3078
|
plane: PBMeshRenderer_PlaneMesh;
|
|
3079
3079
|
};
|
|
3080
3080
|
}
|
|
@@ -4364,10 +4364,10 @@ export declare type TextureHelper = {
|
|
|
4364
4364
|
|
|
4365
4365
|
export declare interface TextureUnion {
|
|
4366
4366
|
tex?: {
|
|
4367
|
-
$case:
|
|
4367
|
+
$case: "texture";
|
|
4368
4368
|
texture: Texture;
|
|
4369
4369
|
} | {
|
|
4370
|
-
$case:
|
|
4370
|
+
$case: "avatarTexture";
|
|
4371
4371
|
avatarTexture: AvatarTexture;
|
|
4372
4372
|
};
|
|
4373
4373
|
}
|
|
@@ -26398,7 +26398,7 @@
|
|
|
26398
26398
|
},
|
|
26399
26399
|
{
|
|
26400
26400
|
"kind": "Content",
|
|
26401
|
-
"text": "{\n $case:
|
|
26401
|
+
"text": "{\n $case: \"unlit\";\n unlit: "
|
|
26402
26402
|
},
|
|
26403
26403
|
{
|
|
26404
26404
|
"kind": "Reference",
|
|
@@ -26407,7 +26407,7 @@
|
|
|
26407
26407
|
},
|
|
26408
26408
|
{
|
|
26409
26409
|
"kind": "Content",
|
|
26410
|
-
"text": ";\n } | {\n $case:
|
|
26410
|
+
"text": ";\n } | {\n $case: \"pbr\";\n pbr: "
|
|
26411
26411
|
},
|
|
26412
26412
|
{
|
|
26413
26413
|
"kind": "Reference",
|
|
@@ -26996,7 +26996,7 @@
|
|
|
26996
26996
|
},
|
|
26997
26997
|
{
|
|
26998
26998
|
"kind": "Content",
|
|
26999
|
-
"text": "{\n $case:
|
|
26999
|
+
"text": "{\n $case: \"box\";\n box: "
|
|
27000
27000
|
},
|
|
27001
27001
|
{
|
|
27002
27002
|
"kind": "Reference",
|
|
@@ -27005,7 +27005,7 @@
|
|
|
27005
27005
|
},
|
|
27006
27006
|
{
|
|
27007
27007
|
"kind": "Content",
|
|
27008
|
-
"text": ";\n } | {\n $case:
|
|
27008
|
+
"text": ";\n } | {\n $case: \"sphere\";\n sphere: "
|
|
27009
27009
|
},
|
|
27010
27010
|
{
|
|
27011
27011
|
"kind": "Reference",
|
|
@@ -27014,7 +27014,7 @@
|
|
|
27014
27014
|
},
|
|
27015
27015
|
{
|
|
27016
27016
|
"kind": "Content",
|
|
27017
|
-
"text": ";\n } | {\n $case:
|
|
27017
|
+
"text": ";\n } | {\n $case: \"cylinder\";\n cylinder: "
|
|
27018
27018
|
},
|
|
27019
27019
|
{
|
|
27020
27020
|
"kind": "Reference",
|
|
@@ -27023,7 +27023,7 @@
|
|
|
27023
27023
|
},
|
|
27024
27024
|
{
|
|
27025
27025
|
"kind": "Content",
|
|
27026
|
-
"text": ";\n } | {\n $case:
|
|
27026
|
+
"text": ";\n } | {\n $case: \"plane\";\n plane: "
|
|
27027
27027
|
},
|
|
27028
27028
|
{
|
|
27029
27029
|
"kind": "Reference",
|
|
@@ -27641,7 +27641,7 @@
|
|
|
27641
27641
|
},
|
|
27642
27642
|
{
|
|
27643
27643
|
"kind": "Content",
|
|
27644
|
-
"text": "{\n $case:
|
|
27644
|
+
"text": "{\n $case: \"box\";\n box: "
|
|
27645
27645
|
},
|
|
27646
27646
|
{
|
|
27647
27647
|
"kind": "Reference",
|
|
@@ -27650,7 +27650,7 @@
|
|
|
27650
27650
|
},
|
|
27651
27651
|
{
|
|
27652
27652
|
"kind": "Content",
|
|
27653
|
-
"text": ";\n } | {\n $case:
|
|
27653
|
+
"text": ";\n } | {\n $case: \"sphere\";\n sphere: "
|
|
27654
27654
|
},
|
|
27655
27655
|
{
|
|
27656
27656
|
"kind": "Reference",
|
|
@@ -27659,7 +27659,7 @@
|
|
|
27659
27659
|
},
|
|
27660
27660
|
{
|
|
27661
27661
|
"kind": "Content",
|
|
27662
|
-
"text": ";\n } | {\n $case:
|
|
27662
|
+
"text": ";\n } | {\n $case: \"cylinder\";\n cylinder: "
|
|
27663
27663
|
},
|
|
27664
27664
|
{
|
|
27665
27665
|
"kind": "Reference",
|
|
@@ -27668,7 +27668,7 @@
|
|
|
27668
27668
|
},
|
|
27669
27669
|
{
|
|
27670
27670
|
"kind": "Content",
|
|
27671
|
-
"text": ";\n } | {\n $case:
|
|
27671
|
+
"text": ";\n } | {\n $case: \"plane\";\n plane: "
|
|
27672
27672
|
},
|
|
27673
27673
|
{
|
|
27674
27674
|
"kind": "Reference",
|
|
@@ -40641,7 +40641,7 @@
|
|
|
40641
40641
|
},
|
|
40642
40642
|
{
|
|
40643
40643
|
"kind": "Content",
|
|
40644
|
-
"text": "{\n $case:
|
|
40644
|
+
"text": "{\n $case: \"texture\";\n texture: "
|
|
40645
40645
|
},
|
|
40646
40646
|
{
|
|
40647
40647
|
"kind": "Reference",
|
|
@@ -40650,7 +40650,7 @@
|
|
|
40650
40650
|
},
|
|
40651
40651
|
{
|
|
40652
40652
|
"kind": "Content",
|
|
40653
|
-
"text": ";\n } | {\n $case:
|
|
40653
|
+
"text": ";\n } | {\n $case: \"avatarTexture\";\n avatarTexture: "
|
|
40654
40654
|
},
|
|
40655
40655
|
{
|
|
40656
40656
|
"kind": "Reference",
|
|
@@ -1653,10 +1653,10 @@ export const PBGltfContainer: {
|
|
|
1653
1653
|
export interface PBMaterial {
|
|
1654
1654
|
// (undocumented)
|
|
1655
1655
|
material?: {
|
|
1656
|
-
$case:
|
|
1656
|
+
$case: "unlit";
|
|
1657
1657
|
unlit: PBMaterial_UnlitMaterial;
|
|
1658
1658
|
} | {
|
|
1659
|
-
$case:
|
|
1659
|
+
$case: "pbr";
|
|
1660
1660
|
pbr: PBMaterial_PbrMaterial;
|
|
1661
1661
|
};
|
|
1662
1662
|
}
|
|
@@ -1720,16 +1720,16 @@ export interface PBMeshCollider {
|
|
|
1720
1720
|
collisionMask?: number | undefined;
|
|
1721
1721
|
// (undocumented)
|
|
1722
1722
|
mesh?: {
|
|
1723
|
-
$case:
|
|
1723
|
+
$case: "box";
|
|
1724
1724
|
box: PBMeshCollider_BoxMesh;
|
|
1725
1725
|
} | {
|
|
1726
|
-
$case:
|
|
1726
|
+
$case: "sphere";
|
|
1727
1727
|
sphere: PBMeshCollider_SphereMesh;
|
|
1728
1728
|
} | {
|
|
1729
|
-
$case:
|
|
1729
|
+
$case: "cylinder";
|
|
1730
1730
|
cylinder: PBMeshCollider_CylinderMesh;
|
|
1731
1731
|
} | {
|
|
1732
|
-
$case:
|
|
1732
|
+
$case: "plane";
|
|
1733
1733
|
plane: PBMeshCollider_PlaneMesh;
|
|
1734
1734
|
};
|
|
1735
1735
|
}
|
|
@@ -1801,16 +1801,16 @@ export const PBMeshCollider_SphereMesh: {
|
|
|
1801
1801
|
export interface PBMeshRenderer {
|
|
1802
1802
|
// (undocumented)
|
|
1803
1803
|
mesh?: {
|
|
1804
|
-
$case:
|
|
1804
|
+
$case: "box";
|
|
1805
1805
|
box: PBMeshRenderer_BoxMesh;
|
|
1806
1806
|
} | {
|
|
1807
|
-
$case:
|
|
1807
|
+
$case: "sphere";
|
|
1808
1808
|
sphere: PBMeshRenderer_SphereMesh;
|
|
1809
1809
|
} | {
|
|
1810
|
-
$case:
|
|
1810
|
+
$case: "cylinder";
|
|
1811
1811
|
cylinder: PBMeshRenderer_CylinderMesh;
|
|
1812
1812
|
} | {
|
|
1813
|
-
$case:
|
|
1813
|
+
$case: "plane";
|
|
1814
1814
|
plane: PBMeshRenderer_PlaneMesh;
|
|
1815
1815
|
};
|
|
1816
1816
|
}
|
|
@@ -2775,10 +2775,10 @@ export type TextureHelper = {
|
|
|
2775
2775
|
export interface TextureUnion {
|
|
2776
2776
|
// (undocumented)
|
|
2777
2777
|
tex?: {
|
|
2778
|
-
$case:
|
|
2778
|
+
$case: "texture";
|
|
2779
2779
|
texture: Texture;
|
|
2780
2780
|
} | {
|
|
2781
|
-
$case:
|
|
2781
|
+
$case: "avatarTexture";
|
|
2782
2782
|
avatarTexture: AvatarTexture;
|
|
2783
2783
|
};
|
|
2784
2784
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcl/playground-assets",
|
|
3
|
-
"version": "7.0.6-
|
|
3
|
+
"version": "7.0.6-3808797047.commit-ee7ea04",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"typings": "./dist/index.d.ts",
|
|
@@ -17,12 +17,12 @@
|
|
|
17
17
|
"author": "Decentraland",
|
|
18
18
|
"license": "Apache-2.0",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@dcl/sdk": "7.0.6-
|
|
20
|
+
"@dcl/sdk": "7.0.6-3808797047.commit-ee7ea04"
|
|
21
21
|
},
|
|
22
22
|
"minCliVersion": "3.12.3",
|
|
23
23
|
"files": [
|
|
24
24
|
"dist",
|
|
25
25
|
"etc"
|
|
26
26
|
],
|
|
27
|
-
"commit": "
|
|
27
|
+
"commit": "ee7ea0434ecbd9e92db737237a67cd02af989b73"
|
|
28
28
|
}
|