From 797ebb2f097a16a0b9c9d3caaa6c6c2d09a58e7d Mon Sep 17 00:00:00 2001 From: lukemckinstry Date: Thu, 26 Sep 2024 14:20:26 -0400 Subject: [PATCH] documentation wording clarification --- packages/engine/Source/Scene/FrameRateMonitor.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/packages/engine/Source/Scene/FrameRateMonitor.js b/packages/engine/Source/Scene/FrameRateMonitor.js index 71371882757..701db139289 100644 --- a/packages/engine/Source/Scene/FrameRateMonitor.js +++ b/packages/engine/Source/Scene/FrameRateMonitor.js @@ -42,7 +42,8 @@ function FrameRateMonitor(options) { this._scene = options.scene; /** - * Gets or sets the length of the sliding window over which to compute the average frame rate, in seconds. + * Gets or sets the length of the sliding window over which to compute the average frame rate, in seconds, for the + * purpose of calculating if the frame rate is lower or higher than the minimum frame rate threshold. * @type {number} */ this.samplingWindow = defaultValue( @@ -51,7 +52,8 @@ function FrameRateMonitor(options) { ); /** - * Gets or sets the length of the sliding window over which to compute the average frame rate, in seconds. + * Gets or sets the length of the sliding window over which to compute the average frame rate, in number of frame, + * for the purpose of calculating and displaying averageFramesPerSecond. * @type {number} */ this.averageFrameRateWindow = defaultValue(