From b33b1f5ec022958cd0791ce98c3ea2e4238cfae2 Mon Sep 17 00:00:00 2001 From: Christopher Whitley <103014489+AristurtleDev@users.noreply.github.com> Date: Wed, 11 Jun 2025 00:25:39 -0400 Subject: [PATCH] Just use texture name (#997) --- source/MonoGame.Extended/Graphics/Texture2DRegion.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/MonoGame.Extended/Graphics/Texture2DRegion.cs b/source/MonoGame.Extended/Graphics/Texture2DRegion.cs index a1212ae7..aada7d0a 100644 --- a/source/MonoGame.Extended/Graphics/Texture2DRegion.cs +++ b/source/MonoGame.Extended/Graphics/Texture2DRegion.cs @@ -179,7 +179,7 @@ public class Texture2DRegion if (string.IsNullOrEmpty(name)) { - name = $"{texture.Name}({x}, {y}, {width}, {height})"; + name = $"{texture.Name}"; } Name = name;