From 3e3e64eb39112d66d813fff8bcfb4983d3f82e3f Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Fri, 9 Jun 2017 14:21:48 +0900 Subject: [PATCH] More xmldoc --- osu.Game/Rulesets/Timing/TimingSection.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/osu.Game/Rulesets/Timing/TimingSection.cs b/osu.Game/Rulesets/Timing/TimingSection.cs index a67b7f6707..9958dd1022 100644 --- a/osu.Game/Rulesets/Timing/TimingSection.cs +++ b/osu.Game/Rulesets/Timing/TimingSection.cs @@ -6,17 +6,18 @@ namespace osu.Game.Rulesets.Timing public class TimingSection { /// - /// The time at which this timing section starts. + /// The time in milliseconds at which this timing section starts. /// public double Time; /// - /// The beat length. + /// The length of one beat in milliseconds. /// public double BeatLength = 500; /// - /// The speed multiplier. + /// An arbitrary speed multiplier which should be used to when adjusting the visual representation of entities represented by this section. + /// This is usually applied in adition to a multiplier based on the relative to a constant. /// public double SpeedMultiplier = 1; }