Skip to content

Commit

Permalink
Documentation update.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tape-Worm committed Feb 18, 2022
1 parent cbf1f94 commit 59e3c79
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Gorgon/Gorgon.Core/Timing/GorgonTiming.cs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public static class GorgonTiming
/// Property to set or return the maximum frame delta, in seconds.
/// </summary>
/// <remarks>
/// This value is used to cap the <see cref="Delta"/> and <see cref="ScaledDelta"/> values so that frames can appear more smoothly in case of a long delay between frames. By default, this is set to
/// This value is used to cap the <see cref="Delta"/> and <see cref="UnscaledDelta"/> values so that frames can appear more smoothly in case of a long delay between frames. By default, this is set to
/// 0.33333 seconds.
/// </remarks>
public static double MaximumFrameDelta
Expand All @@ -131,7 +131,7 @@ public static double MaximumFrameDelta
/// <summary>
/// Property to scale the frame delta times.
/// </summary>
/// <remarks>Setting this value to 0 will pause, and a negative value will move things in reverse when using <see cref="ScaledDelta"/>.</remarks>
/// <remarks>Setting this value to 0 will pause, and a negative value will move things in reverse when using <see cref="Delta"/>.</remarks>
public static float TimeScale
{
get;
Expand Down Expand Up @@ -327,7 +327,7 @@ public static float AverageDelta
/// </summary>
/// <remarks>
/// <para>
/// This only applies to the <see cref="AverageFPS"/>, <see cref="AverageDelta"/> and <see cref="AverageScaledDelta"/> properties.
/// This only applies to the <see cref="AverageFPS"/>, <see cref="AverageDelta"/> and <see cref="AverageUnscaledDelta"/> properties.
/// </para>
/// <para>
/// Note that the higher the value assigned to this property, the longer it'll take for the averages to compute, this is in addition to any overhead from the time it takes to execute a single
Expand Down

0 comments on commit 59e3c79

Please sign in to comment.