@dcl/playground-assets 7.0.6-4106696113.commit-cda3cfd → 7.0.6-4115789462.commit-407b179

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 CHANGED
@@ -3071,7 +3071,7 @@ export declare interface PBMaterial_UnlitMaterial {
3071
3071
  /** default = true */
3072
3072
  castShadows?: boolean | undefined;
3073
3073
  /** default = white; */
3074
- albedoColor?: PBColor4 | undefined;
3074
+ diffuseColor?: PBColor4 | undefined;
3075
3075
  }
3076
3076
 
3077
3077
  /**
package/dist/beta.d.ts CHANGED
@@ -3067,7 +3067,7 @@ export declare interface PBMaterial_UnlitMaterial {
3067
3067
  /** default = true */
3068
3068
  castShadows?: boolean | undefined;
3069
3069
  /** default = white; */
3070
- albedoColor?: PBColor4 | undefined;
3070
+ diffuseColor?: PBColor4 | undefined;
3071
3071
  }
3072
3072
 
3073
3073
  /**
@@ -3067,7 +3067,7 @@ export declare interface PBMaterial_UnlitMaterial {
3067
3067
  /** default = true */
3068
3068
  castShadows?: boolean | undefined;
3069
3069
  /** default = white; */
3070
- albedoColor?: PBColor4 | undefined;
3070
+ diffuseColor?: PBColor4 | undefined;
3071
3071
  }
3072
3072
 
3073
3073
  /**
package/dist/index.js CHANGED
@@ -10015,7 +10015,7 @@
10015
10015
  },
10016
10016
  };
10017
10017
  function createBasePBMaterial_UnlitMaterial() {
10018
- return { texture: undefined, alphaTest: undefined, castShadows: undefined, albedoColor: undefined };
10018
+ return { texture: undefined, alphaTest: undefined, castShadows: undefined, diffuseColor: undefined };
10019
10019
  }
10020
10020
  /**
10021
10021
  * @public
@@ -10034,8 +10034,8 @@
10034
10034
  if (message.castShadows !== undefined) {
10035
10035
  writer.uint32(24).bool(message.castShadows);
10036
10036
  }
10037
- if (message.albedoColor !== undefined) {
10038
- Color4.encode(message.albedoColor, writer.uint32(34).fork()).ldelim();
10037
+ if (message.diffuseColor !== undefined) {
10038
+ Color4.encode(message.diffuseColor, writer.uint32(34).fork()).ldelim();
10039
10039
  }
10040
10040
  return writer;
10041
10041
  },
@@ -10056,7 +10056,7 @@
10056
10056
  message.castShadows = reader.bool();
10057
10057
  break;
10058
10058
  case 4:
10059
- message.albedoColor = Color4.decode(reader, reader.uint32());
10059
+ message.diffuseColor = Color4.decode(reader, reader.uint32());
10060
10060
  break;
10061
10061
  default:
10062
10062
  reader.skipType(tag & 7);