Adds a simple indicator to display FPS (#3624)

* Adds a simple indicator to display FPS

* ratchet up test coverage threshold
This commit is contained in:
Andrew Henry
2020-12-28 19:57:36 -08:00
committed by GitHub
parent 351848ad56
commit ac2034b243
5 changed files with 164 additions and 3 deletions

View File

@ -60,7 +60,8 @@ define([
'./defaultRootName/plugin',
'./timeline/plugin',
'./viewDatumAction/plugin',
'./interceptors/plugin'
'./interceptors/plugin',
'./performanceIndicator/plugin'
], function (
_,
UTCTimeSystem,
@ -101,7 +102,8 @@ define([
DefaultRootName,
Timeline,
ViewDatumAction,
ObjectInterceptors
ObjectInterceptors,
PerformanceIndicator
) {
const bundleMap = {
LocalStorage: 'platform/persistence/local',
@ -197,6 +199,7 @@ define([
plugins.Timeline = Timeline.default;
plugins.ViewDatumAction = ViewDatumAction.default;
plugins.ObjectInterceptors = ObjectInterceptors.default;
plugins.PerformanceIndicator = PerformanceIndicator.default;
return plugins;
});