@dcl/protocol 1.0.0-10704143848.commit-a0c6d86 → 1.0.0-10884114018.commit-31410eb

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-10704143848.commit-a0c6d86",
3
+ "version": "1.0.0-10884114018.commit-31410eb",
4
4
  "description": "",
5
5
  "repository": "decentraland/protocol.git",
6
6
  "homepage": "https://github.com/decentraland/protocol#readme",
@@ -29,5 +29,5 @@
29
29
  "out-js",
30
30
  "public"
31
31
  ],
32
- "commit": "a0c6d866c35d5a289e88046a83594d01c893b76f"
32
+ "commit": "31410eb7daca9b292e4c59272c06a2418f814988"
33
33
  }
@@ -1,12 +1,11 @@
1
1
  syntax = "proto3";
2
2
  package decentraland.sdk.components.common;
3
3
 
4
+ // Defines the transition used towards the camera that contains the CameraTransition.
5
+ // This structure may be updated in the future to specify from/to entities and to have easing functions.
4
6
  message CameraTransition {
5
- optional uint32 from_entity = 1;
6
- optional uint32 to_entity = 2;
7
7
  oneof transition_mode {
8
- float time = 3;
9
- float speed = 4; // meters per second; e.g. speed 1 -> 1 meter per second
8
+ float time = 1;
9
+ float speed = 2; // meters per second; e.g. speed 1 -> 1 meter per second
10
10
  }
11
- // EasingFunction easing_function = 5; // enable in the future
12
11
  }
@@ -4,8 +4,8 @@ package decentraland.sdk.components;
4
4
  import "decentraland/sdk/components/common/id.proto";
5
5
  option (common.ecs_component_id) = 1075;
6
6
 
7
- // PBMainCamera.virtualCameraEntity defines which VirtualCamera entity is active at the moment. 0 means none.
7
+ // PBMainCamera.virtualCameraEntity defines which VirtualCamera entity is active at the moment.
8
+ // This component may hold 'repeated common.CameraTransition' transitionOverrides in the future
8
9
  message PBMainCamera {
9
- uint32 virtual_camera_entity = 1; // currently active virtual camera (default: 0)
10
- // repeated common.CameraTransition transitionOverrides = 2; // enable in the future
10
+ optional uint32 virtual_camera_entity = 1; // current active virtual camera
11
11
  }
@@ -6,10 +6,11 @@ import "decentraland/sdk/components/common/id.proto";
6
6
  option (common.ecs_component_id) = 1076;
7
7
 
8
8
  // PBVirtualCamera represents a camera to be used at some point in time during the scene execution
9
- // * The defaultTransition represents the transition TOWARDS this camera.
9
+ // * The defaultTransition represents the transition TOWARDS this camera. If there is none, it's treated as
10
+ // an 'instant' transition (like using speed/time = 0)
10
11
  // * The lookAtEntity defines to which entity the Camera has to look at constantly (independent from
11
12
  // the holding entity transform).
12
13
  message PBVirtualCamera {
13
- common.CameraTransition default_transition = 1;
14
+ optional common.CameraTransition default_transition = 1;
14
15
  optional uint32 look_at_entity = 2;
15
16
  }