1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-05 03:22:55 +08:00

Make name output of transformers better

This commit is contained in:
Dean Herbert 2024-10-01 18:06:19 +09:00
parent bfa2ab1f22
commit fa7a171efc
No known key found for this signature in database

View File

@ -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;
@ -47,6 +48,6 @@ namespace osu.Game.Skinning
}
}
public override string ToString() => $"{nameof(SkinTransformer)} {{ Skin: {Skin} }}";
public override string ToString() => $"{GetType().ReadableName()} {{ Skin: {Skin} }}";
}
}