@dcl/protocol 1.0.0-22668989180.commit-25aa736 → 1.0.0-22672716807.commit-22c32c9
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/kernel/comms/rfc4/comms.gen.d.ts +58 -0
- package/out-js/decentraland/kernel/comms/rfc4/comms.gen.js +393 -19
- package/out-js/decentraland/kernel/comms/rfc4/comms.gen.js.map +1 -1
- package/out-js/decentraland/sdk/components/common/input_action.gen.d.ts +10 -0
- package/out-js/decentraland/sdk/components/common/input_action.gen.js +52 -1
- package/out-js/decentraland/sdk/components/common/input_action.gen.js.map +1 -1
- package/out-js/decentraland/sdk/components/pointer_events.gen.d.ts +5 -1
- package/out-js/decentraland/sdk/components/pointer_events.gen.js +31 -3
- package/out-js/decentraland/sdk/components/pointer_events.gen.js.map +1 -1
- package/out-js/decentraland/sdk/components/tween.gen.d.ts +19 -0
- package/out-js/decentraland/sdk/components/tween.gen.js +170 -6
- package/out-js/decentraland/sdk/components/tween.gen.js.map +1 -1
- package/out-ts/decentraland/kernel/comms/rfc4/comms.gen.ts +451 -3
- package/out-ts/decentraland/sdk/components/common/input_action.gen.ts +51 -0
- package/out-ts/decentraland/sdk/components/pointer_events.gen.ts +44 -3
- package/out-ts/decentraland/sdk/components/tween.gen.ts +183 -0
- package/package.json +3 -3
- package/proto/decentraland/kernel/comms/rfc4/comms.proto +38 -1
- package/proto/decentraland/sdk/components/audio_analysis.proto +44 -0
- package/proto/decentraland/sdk/components/avatar_locomotion_settings.proto +21 -0
- package/proto/decentraland/sdk/components/common/input_action.proto +8 -0
- package/proto/decentraland/sdk/components/light_source.proto +1 -1
- package/proto/decentraland/sdk/components/pointer_events.proto +2 -0
- package/proto/decentraland/sdk/components/tween.proto +10 -0
- package/proto/decentraland/sdk/components/virtual_camera.proto +2 -0
|
@@ -19,6 +19,7 @@ message PBTween {
|
|
|
19
19
|
RotateContinuous rotate_continuous = 9;
|
|
20
20
|
MoveContinuous move_continuous = 10;
|
|
21
21
|
TextureMoveContinuous texture_move_continuous = 11;
|
|
22
|
+
MoveRotateScale move_rotate_scale = 12;
|
|
22
23
|
}
|
|
23
24
|
|
|
24
25
|
optional bool playing = 6; // default true (pause or running)
|
|
@@ -41,6 +42,15 @@ message Scale {
|
|
|
41
42
|
decentraland.common.Vector3 end = 2;
|
|
42
43
|
}
|
|
43
44
|
|
|
45
|
+
message MoveRotateScale {
|
|
46
|
+
decentraland.common.Vector3 position_start = 1;
|
|
47
|
+
decentraland.common.Vector3 position_end = 2;
|
|
48
|
+
decentraland.common.Quaternion rotation_start = 3;
|
|
49
|
+
decentraland.common.Quaternion rotation_end = 4;
|
|
50
|
+
decentraland.common.Vector3 scale_start = 5;
|
|
51
|
+
decentraland.common.Vector3 scale_end = 6;
|
|
52
|
+
}
|
|
53
|
+
|
|
44
54
|
// This tween mode allows to move the texture of a PbrMaterial or UnlitMaterial.
|
|
45
55
|
// You can also specify the movement type (offset or tiling)
|
|
46
56
|
message TextureMove {
|
|
@@ -10,7 +10,9 @@ option (common.ecs_component_id) = 1076;
|
|
|
10
10
|
// an 'instant' transition (like using speed/time = 0)
|
|
11
11
|
// * The lookAtEntity defines to which entity the Camera has to look at constantly (independent from
|
|
12
12
|
// the holding entity transform).
|
|
13
|
+
// * The fov defines the Field of View of the virtual camera
|
|
13
14
|
message PBVirtualCamera {
|
|
14
15
|
optional common.CameraTransition default_transition = 1;
|
|
15
16
|
optional uint32 look_at_entity = 2;
|
|
17
|
+
optional float fov = 3; // default: 60
|
|
16
18
|
}
|