@foxglove/extension 2.59.0 → 3.0.0
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 +1 -1
- package/src/experimental.ts +6 -0
package/package.json
CHANGED
package/src/experimental.ts
CHANGED
|
@@ -340,6 +340,12 @@ export namespace Experimental {
|
|
|
340
340
|
|
|
341
341
|
/**
|
|
342
342
|
* Map of compare data sources. Only present when multiple data sources are loaded in compare mode.
|
|
343
|
+
*
|
|
344
|
+
* When set, player times on this render state (`currentTime`, `startTime`, `endTime`) and
|
|
345
|
+
* remapped message `receiveTime` / `publishTime` values live on the shared compare clock
|
|
346
|
+
* (origin t=0), not wall-clock epoch. Prefer elapsed / seconds formatting for those values.
|
|
347
|
+
* Recover a source-local absolute time with `sourceTime = currentTime - timeOffset` using the
|
|
348
|
+
* matching entry's `timeOffset`.
|
|
343
349
|
*/
|
|
344
350
|
comparisonSources?: ComparisonSources;
|
|
345
351
|
|