@dcl/protocol 1.0.0-24504493688.commit-6a96fbb → 1.0.0-24513643863.commit-4851fd6
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-24513643863.commit-4851fd6",
|
|
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": "4851fd6bac60df3272133f81489a5f71c8de525c"
|
|
34
34
|
}
|
|
@@ -65,7 +65,7 @@ message PBParticleSystem {
|
|
|
65
65
|
optional PlaybackState playback_state = 22; // default = PS_PLAYING
|
|
66
66
|
|
|
67
67
|
// --- Emission Bursts ---
|
|
68
|
-
|
|
68
|
+
optional BurstConfiguration bursts = 29;
|
|
69
69
|
|
|
70
70
|
// ---- Nested types ----
|
|
71
71
|
|
|
@@ -102,6 +102,10 @@ message PBParticleSystem {
|
|
|
102
102
|
}
|
|
103
103
|
|
|
104
104
|
// Emission burst configuration.
|
|
105
|
+
message BurstConfiguration {
|
|
106
|
+
repeated Burst values = 1;
|
|
107
|
+
}
|
|
108
|
+
|
|
105
109
|
message Burst {
|
|
106
110
|
float time = 1; // Seconds from start of cycle.
|
|
107
111
|
uint32 count = 2; // Particles to emit.
|