[csharp] Port of commit c1cbe3c: Minor javadoc wording.

This commit is contained in:
Harald Csaszar 2025-04-04 19:34:01 +02:00
parent 8115dd8dde
commit 3e54b4b1b5

View File

@ -1243,7 +1243,7 @@ namespace Spine {
/// <para> /// <para>
/// The <c>MixDuration</c> can be set manually rather than use the value from /// The <c>MixDuration</c> can be set manually rather than use the value from
/// <see cref="AnimationStateData.GetMix(Animation, Animation)"/>. In that case, the <c>MixDuration</c> can be set for a new /// <see cref="AnimationStateData.GetMix(Animation, Animation)"/>. In that case, the <c>MixDuration</c> can be set for a new
/// track entry only before <see cref="AnimationState.Update(float)"/> is first called.</para> /// track entry only before <see cref="AnimationState.Update(float)"/> is next called.</para>
/// <para> /// <para>
/// When using <seealso cref="AnimationState.AddAnimation(int, Animation, bool, float)"/> with a <c>Delay</c> &lt;= 0, the /// When using <seealso cref="AnimationState.AddAnimation(int, Animation, bool, float)"/> with a <c>Delay</c> &lt;= 0, the
/// <see cref="TrackEntry.Delay"/> is set using the mix duration from the <see cref=" AnimationStateData"/>. If <c>mixDuration</c> is set /// <see cref="TrackEntry.Delay"/> is set using the mix duration from the <see cref=" AnimationStateData"/>. If <c>mixDuration</c> is set
@ -1271,7 +1271,7 @@ namespace Spine {
/// </para><para> /// </para><para>
/// Track entries on track 0 ignore this setting and always use <see cref="MixBlend.First"/>. /// Track entries on track 0 ignore this setting and always use <see cref="MixBlend.First"/>.
/// </para><para> /// </para><para>
/// The <c>MixBlend</c> can be set for a new track entry only before <see cref="AnimationState.Apply(Skeleton)"/> is first /// The <c>MixBlend</c> can be set for a new track entry only before <see cref="AnimationState.Apply(Skeleton)"/> is next
/// called.</para> /// called.</para>
/// </summary> /// </summary>
public MixBlend MixBlend { get { return mixBlend; } set { mixBlend = value; } } public MixBlend MixBlend { get { return mixBlend; } set { mixBlend = value; } }