diff --git a/osu.Game.Rulesets.Catch/Objects/CatchHitObject.cs b/osu.Game.Rulesets.Catch/Objects/CatchHitObject.cs index a5c254f2f1..d40821c840 100644 --- a/osu.Game.Rulesets.Catch/Objects/CatchHitObject.cs +++ b/osu.Game.Rulesets.Catch/Objects/CatchHitObject.cs @@ -19,6 +19,12 @@ namespace osu.Game.Rulesets.Catch.Objects public readonly Bindable OriginalXBindable = new Bindable(); + /// + /// The horizontal position of the hit object between 0 and . + /// + /// + /// This value is the original value specified in the beatmap, not affected by beatmap processing. + /// public float OriginalX { get => OriginalXBindable.Value; @@ -37,12 +43,15 @@ namespace osu.Game.Rulesets.Catch.Objects public readonly Bindable EffectiveXBindable = new Bindable(); + /// + /// The effective horizontal position of the hit object between 0 and . + /// public float EffectiveX => EffectiveXBindable.Value; private float xOffset; /// - /// A random offset applied to , set by the . + /// A random offset applied to the horizontal value, set by the . /// internal float XOffset {