@dcl/playground-assets 7.0.6-3832283592.commit-1c3d2d6 → 7.0.6-3840920714.commit-b9858ac
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 +1 -1
- package/dist/beta.d.ts +1 -1
- package/dist/index.bundled.d.ts +1 -1
- package/dist/index.js +2 -2
- 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/snippets/material.ts +3 -3
- package/dist/playground-assets.d.ts +1 -1
- package/etc/playground-assets.api.json +2 -2
- package/etc/playground-assets.api.md +1 -1
- package/package.json +3 -3
package/dist/alpha.d.ts
CHANGED
|
@@ -3090,7 +3090,7 @@ export declare interface PBMaterial_PbrMaterial {
|
|
|
3090
3090
|
/** default = null */
|
|
3091
3091
|
bumpTexture?: TextureUnion | undefined;
|
|
3092
3092
|
/** default = white; */
|
|
3093
|
-
albedoColor?:
|
|
3093
|
+
albedoColor?: PBColor4 | undefined;
|
|
3094
3094
|
/** default = black; */
|
|
3095
3095
|
emissiveColor?: PBColor3 | undefined;
|
|
3096
3096
|
/** default = white; */
|
package/dist/beta.d.ts
CHANGED
|
@@ -3090,7 +3090,7 @@ export declare interface PBMaterial_PbrMaterial {
|
|
|
3090
3090
|
/** default = null */
|
|
3091
3091
|
bumpTexture?: TextureUnion | undefined;
|
|
3092
3092
|
/** default = white; */
|
|
3093
|
-
albedoColor?:
|
|
3093
|
+
albedoColor?: PBColor4 | undefined;
|
|
3094
3094
|
/** default = black; */
|
|
3095
3095
|
emissiveColor?: PBColor3 | undefined;
|
|
3096
3096
|
/** default = white; */
|
package/dist/index.bundled.d.ts
CHANGED
|
@@ -3090,7 +3090,7 @@ export declare interface PBMaterial_PbrMaterial {
|
|
|
3090
3090
|
/** default = null */
|
|
3091
3091
|
bumpTexture?: TextureUnion | undefined;
|
|
3092
3092
|
/** default = white; */
|
|
3093
|
-
albedoColor?:
|
|
3093
|
+
albedoColor?: PBColor4 | undefined;
|
|
3094
3094
|
/** default = black; */
|
|
3095
3095
|
emissiveColor?: PBColor3 | undefined;
|
|
3096
3096
|
/** default = white; */
|
package/dist/index.js
CHANGED
|
@@ -9967,7 +9967,7 @@
|
|
|
9967
9967
|
TextureUnion.encode(message.bumpTexture, writer.uint32(50).fork()).ldelim();
|
|
9968
9968
|
}
|
|
9969
9969
|
if (message.albedoColor !== undefined) {
|
|
9970
|
-
|
|
9970
|
+
Color4.encode(message.albedoColor, writer.uint32(58).fork()).ldelim();
|
|
9971
9971
|
}
|
|
9972
9972
|
if (message.emissiveColor !== undefined) {
|
|
9973
9973
|
Color3.encode(message.emissiveColor, writer.uint32(66).fork()).ldelim();
|
|
@@ -10024,7 +10024,7 @@
|
|
|
10024
10024
|
message.bumpTexture = TextureUnion.decode(reader, reader.uint32());
|
|
10025
10025
|
break;
|
|
10026
10026
|
case 7:
|
|
10027
|
-
message.albedoColor =
|
|
10027
|
+
message.albedoColor = Color4.decode(reader, reader.uint32());
|
|
10028
10028
|
break;
|
|
10029
10029
|
case 8:
|
|
10030
10030
|
message.emissiveColor = Color3.decode(reader, reader.uint32());
|