@dcl/ecs 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.
@@ -33,7 +33,7 @@ export interface PBMaterial_UnlitMaterial {
33
33
  /** default = true */
34
34
  castShadows?: boolean | undefined;
35
35
  /** default = white; */
36
- albedoColor?: Color4 | undefined;
36
+ diffuseColor?: Color4 | undefined;
37
37
  }
38
38
  /**
39
39
  * @public
@@ -55,7 +55,7 @@ export const PBMaterial = {
55
55
  },
56
56
  };
57
57
  function createBasePBMaterial_UnlitMaterial() {
58
- return { texture: undefined, alphaTest: undefined, castShadows: undefined, albedoColor: undefined };
58
+ return { texture: undefined, alphaTest: undefined, castShadows: undefined, diffuseColor: undefined };
59
59
  }
60
60
  /**
61
61
  * @public
@@ -74,8 +74,8 @@ export const PBMaterial_UnlitMaterial = {
74
74
  if (message.castShadows !== undefined) {
75
75
  writer.uint32(24).bool(message.castShadows);
76
76
  }
77
- if (message.albedoColor !== undefined) {
78
- Color4.encode(message.albedoColor, writer.uint32(34).fork()).ldelim();
77
+ if (message.diffuseColor !== undefined) {
78
+ Color4.encode(message.diffuseColor, writer.uint32(34).fork()).ldelim();
79
79
  }
80
80
  return writer;
81
81
  },
@@ -96,7 +96,7 @@ export const PBMaterial_UnlitMaterial = {
96
96
  message.castShadows = reader.bool();
97
97
  break;
98
98
  case 4:
99
- message.albedoColor = Color4.decode(reader, reader.uint32());
99
+ message.diffuseColor = Color4.decode(reader, reader.uint32());
100
100
  break;
101
101
  default:
102
102
  reader.skipType(tag & 7);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcl/ecs",
3
- "version": "7.0.6-4106696113.commit-cda3cfd",
3
+ "version": "7.0.6-4115789462.commit-407b179",
4
4
  "description": "Decentraland ECS",
5
5
  "main": "./dist/index.js",
6
6
  "typings": "./dist/index.d.ts",
@@ -27,9 +27,9 @@
27
27
  "ts-proto": "^1.112.0"
28
28
  },
29
29
  "dependencies": {
30
- "@dcl/crdt": "7.0.6-4106696113.commit-cda3cfd",
30
+ "@dcl/crdt": "7.0.6-4115789462.commit-407b179",
31
31
  "@dcl/js-runtime": "file:../js-runtime",
32
- "@dcl/protocol": "1.0.0-4085628047.commit-0f6384e"
32
+ "@dcl/protocol": "1.0.0-4114477251.commit-ccb88d6"
33
33
  },
34
34
  "files": [
35
35
  "dist",
@@ -41,5 +41,5 @@
41
41
  "displayName": "ECS",
42
42
  "tsconfig": "./tsconfig.json"
43
43
  },
44
- "commit": "cda3cfd5ce0ddeb287ff28c1e4f1ad3329c017c0"
44
+ "commit": "407b17987d468f6e2c81d979e2b3bf04f584c100"
45
45
  }