@dcl/protocol 1.0.0-4747376947.commit-d770e0d → 1.0.0-4767865643.commit-3dc0529
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/out-js/decentraland/sdk/components/mesh_collider.gen.d.ts +2 -2
- package/out-js/decentraland/sdk/components/mesh_renderer.gen.d.ts +2 -2
- package/out-ts/decentraland/sdk/components/mesh_collider.gen.ts +2 -2
- package/out-ts/decentraland/sdk/components/mesh_renderer.gen.ts +2 -2
- package/package.json +2 -2
- package/proto/decentraland/sdk/components/mesh_collider.proto +2 -2
- package/proto/decentraland/sdk/components/mesh_renderer.proto +2 -2
|
@@ -58,9 +58,9 @@ export interface PBMeshCollider_BoxMesh {
|
|
|
58
58
|
}
|
|
59
59
|
/** CylinderMesh is a truncated cone shape that contains the Entity. */
|
|
60
60
|
export interface PBMeshCollider_CylinderMesh {
|
|
61
|
-
/** (default
|
|
61
|
+
/** (default 0.5) */
|
|
62
62
|
radiusTop?: number | undefined;
|
|
63
|
-
/** (default
|
|
63
|
+
/** (default 0.5) */
|
|
64
64
|
radiusBottom?: number | undefined;
|
|
65
65
|
}
|
|
66
66
|
/** PlaneMesh is a 2D rectangle described by the Entity's Transform. */
|
|
@@ -32,9 +32,9 @@ export interface PBMeshRenderer_BoxMesh {
|
|
|
32
32
|
}
|
|
33
33
|
/** CylinderMesh renders a truncated cone shape. */
|
|
34
34
|
export interface PBMeshRenderer_CylinderMesh {
|
|
35
|
-
/** (default
|
|
35
|
+
/** (default 0.5) */
|
|
36
36
|
radiusTop?: number | undefined;
|
|
37
|
-
/** (default
|
|
37
|
+
/** (default 0.5) */
|
|
38
38
|
radiusBottom?: number | undefined;
|
|
39
39
|
}
|
|
40
40
|
/** PlaneMesh renders a 2D rectangular shape. */
|
|
@@ -155,11 +155,11 @@ export interface PBMeshCollider_BoxMesh {
|
|
|
155
155
|
|
|
156
156
|
/** CylinderMesh is a truncated cone shape that contains the Entity. */
|
|
157
157
|
export interface PBMeshCollider_CylinderMesh {
|
|
158
|
-
/** (default
|
|
158
|
+
/** (default 0.5) */
|
|
159
159
|
radiusTop?:
|
|
160
160
|
| number
|
|
161
161
|
| undefined;
|
|
162
|
-
/** (default
|
|
162
|
+
/** (default 0.5) */
|
|
163
163
|
radiusBottom?: number | undefined;
|
|
164
164
|
}
|
|
165
165
|
|
|
@@ -28,11 +28,11 @@ export interface PBMeshRenderer_BoxMesh {
|
|
|
28
28
|
|
|
29
29
|
/** CylinderMesh renders a truncated cone shape. */
|
|
30
30
|
export interface PBMeshRenderer_CylinderMesh {
|
|
31
|
-
/** (default
|
|
31
|
+
/** (default 0.5) */
|
|
32
32
|
radiusTop?:
|
|
33
33
|
| number
|
|
34
34
|
| undefined;
|
|
35
|
-
/** (default
|
|
35
|
+
/** (default 0.5) */
|
|
36
36
|
radiusBottom?: number | undefined;
|
|
37
37
|
}
|
|
38
38
|
|
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-4767865643.commit-3dc0529",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
"out-js",
|
|
27
27
|
"public"
|
|
28
28
|
],
|
|
29
|
-
"commit": "
|
|
29
|
+
"commit": "3dc052937891c6bc80fa0da7b9292c1946f2458e"
|
|
30
30
|
}
|
|
@@ -20,8 +20,8 @@ message PBMeshCollider {
|
|
|
20
20
|
|
|
21
21
|
// CylinderMesh is a truncated cone shape that contains the Entity.
|
|
22
22
|
message CylinderMesh {
|
|
23
|
-
optional float radius_top = 1; // (default
|
|
24
|
-
optional float radius_bottom = 2; // (default
|
|
23
|
+
optional float radius_top = 1; // (default 0.5)
|
|
24
|
+
optional float radius_bottom = 2; // (default 0.5)
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
// PlaneMesh is a 2D rectangle described by the Entity's Transform.
|
|
@@ -21,8 +21,8 @@ message PBMeshRenderer {
|
|
|
21
21
|
|
|
22
22
|
// CylinderMesh renders a truncated cone shape.
|
|
23
23
|
message CylinderMesh {
|
|
24
|
-
optional float radius_top = 1; // (default
|
|
25
|
-
optional float radius_bottom = 2; // (default
|
|
24
|
+
optional float radius_top = 1; // (default 0.5)
|
|
25
|
+
optional float radius_bottom = 2; // (default 0.5)
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
// PlaneMesh renders a 2D rectangular shape.
|