Add xmldoc for CurrentRotation

This commit is contained in:
Dean Herbert 2021-04-30 11:25:39 +09:00
parent 7bf3498e2a
commit e69ec91c07

View File

@ -15,6 +15,10 @@ namespace osu.Game.Rulesets.Mods
public abstract class ModBarrelRoll<TObject> : Mod, IUpdatableByPlayfield, IApplicableToDrawableRuleset<TObject>
where TObject : HitObject
{
/// <summary>
/// The current angle of rotation being applied by this mod.
/// Generally should be used to apply inverse rotation to elements which should not be rotated.
/// </summary>
protected float CurrentRotation { get; private set; }
[SettingSource("Roll speed", "Rotations per minute")]