From 5c8ab0aecf6e0f8abac48f08419e7180096d482e Mon Sep 17 00:00:00 2001 From: Harald Csaszar Date: Wed, 11 Mar 2026 19:41:47 +0100 Subject: [PATCH] [csharp] Port of commit 831cf1a: getPathSuffix -> hasPathSuffix. --- spine-csharp/src/Attachments/Sequence.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spine-csharp/src/Attachments/Sequence.cs b/spine-csharp/src/Attachments/Sequence.cs index 4d4ae6dca..59b563abb 100644 --- a/spine-csharp/src/Attachments/Sequence.cs +++ b/spine-csharp/src/Attachments/Sequence.cs @@ -50,7 +50,7 @@ namespace Spine { /// The index of the region to show for the setup pose. public int SetupIndex { get { return setupIndex; } set { setupIndex = value; } } public TextureRegion[] Regions { get { return regions; } } - public bool PathSuffix { get { return pathSuffix; } } + public bool HasPathSuffix { get { return pathSuffix; } } /// Returns a unique ID for this attachment. public int Id { get { return id; } }