From 3e54b4b1b5fb1953944b1f5bce78027abe41b051 Mon Sep 17 00:00:00 2001 From: Harald Csaszar Date: Fri, 4 Apr 2025 19:34:01 +0200 Subject: [PATCH] [csharp] Port of commit c1cbe3c: Minor javadoc wording. --- spine-csharp/src/AnimationState.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spine-csharp/src/AnimationState.cs b/spine-csharp/src/AnimationState.cs index a4547c9df..aa1582214 100644 --- a/spine-csharp/src/AnimationState.cs +++ b/spine-csharp/src/AnimationState.cs @@ -1243,7 +1243,7 @@ namespace Spine { /// /// The MixDuration can be set manually rather than use the value from /// . In that case, the MixDuration can be set for a new - /// track entry only before is first called. + /// track entry only before is next called. /// /// When using with a Delay <= 0, the /// is set using the mix duration from the . If mixDuration is set @@ -1271,7 +1271,7 @@ namespace Spine { /// /// Track entries on track 0 ignore this setting and always use . /// - /// The MixBlend can be set for a new track entry only before is first + /// The MixBlend can be set for a new track entry only before is next /// called. /// public MixBlend MixBlend { get { return mixBlend; } set { mixBlend = value; } }