@dcl/protocol 1.0.0-16751971069.commit-16c6dee → 1.0.0-16804049039.commit-862b555
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcl/protocol",
|
|
3
|
-
"version": "1.0.0-
|
|
3
|
+
"version": "1.0.0-16804049039.commit-862b555",
|
|
4
4
|
"description": "",
|
|
5
5
|
"repository": "decentraland/protocol.git",
|
|
6
6
|
"homepage": "https://github.com/decentraland/protocol#readme",
|
|
@@ -30,5 +30,5 @@
|
|
|
30
30
|
"out-js",
|
|
31
31
|
"public"
|
|
32
32
|
],
|
|
33
|
-
"commit": "
|
|
33
|
+
"commit": "862b55529e8d9dc7b7ced3332515531dd9ecbb6c"
|
|
34
34
|
}
|
|
@@ -6,12 +6,12 @@ import "decentraland/common/texture.proto";
|
|
|
6
6
|
option (common.ecs_component_id) = 1079;
|
|
7
7
|
|
|
8
8
|
message PBLightSource {
|
|
9
|
-
optional bool active = 1;
|
|
10
|
-
optional decentraland.common.Color3 color = 2;
|
|
11
|
-
optional float intensity = 3;
|
|
12
|
-
optional float range = 4;
|
|
13
|
-
optional bool shadow = 5;
|
|
14
|
-
optional decentraland.common.TextureUnion shadow_mask_texture = 6;
|
|
9
|
+
optional bool active = 1; // default = true, whether the lightSource is active or not.
|
|
10
|
+
optional decentraland.common.Color3 color = 2; // default = white, the tint of the light, in RGB format where each component is a floating point value with a range from 0 to 1.
|
|
11
|
+
optional float intensity = 3; // default = 16000, light intensity expressed in candels (lumens/m^2 at 1 m distance, or lumens divided by 4*pi)
|
|
12
|
+
optional float range = 4; // default = -1, how far the light travels, expressed in meters. If negative will be computed automatically as pow(intensity, 0.25)
|
|
13
|
+
optional bool shadow = 5; // default = false, whether the light casts shadows or not.
|
|
14
|
+
optional decentraland.common.TextureUnion shadow_mask_texture = 6; // Texture mask through which shadows are cast to simulate caustics, soft shadows, and light shapes such as light entering from a window.
|
|
15
15
|
|
|
16
16
|
oneof type {
|
|
17
17
|
Point point = 7;
|
|
@@ -25,4 +25,4 @@ message PBLightSource {
|
|
|
25
25
|
optional float inner_angle = 9; // default = 21.8. Inner angle can't be higher than outer angle, otherwise will default to same value. Min value is 0. Max value is 179.
|
|
26
26
|
optional float outer_angle = 10; // default = 30. Outer angle can't be lower than inner angle, otherwise will inner angle will be set to same value. Max value is 179.
|
|
27
27
|
}
|
|
28
|
-
}
|
|
28
|
+
}
|