Skip to content

Commit

Permalink
Make name output of transformers better
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Oct 1, 2024
1 parent bfa2ab1 commit fa7a171
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion osu.Game/Skinning/SkinTransformer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using System;
using osu.Framework.Audio.Sample;
using osu.Framework.Bindables;
using osu.Framework.Extensions.TypeExtensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Textures;
using osu.Game.Audio;
Expand Down Expand Up @@ -47,6 +48,6 @@ protected SkinTransformer(ISkin skin)
}
}

public override string ToString() => $"{nameof(SkinTransformer)} {{ Skin: {Skin} }}";
public override string ToString() => $"{GetType().ReadableName()} {{ Skin: {Skin} }}";
}
}

0 comments on commit fa7a171

Please sign in to comment.