Add back blank line to fix code quality inspection

This commit is contained in:
Bartłomiej Dach 2023-12-20 19:07:26 +01:00
parent a763ad8473
commit 975bacaeb7
No known key found for this signature in database
1 changed files with 1 additions and 0 deletions

View File

@ -87,6 +87,7 @@ public virtual void PlayAnimation()
.ScaleTo(1.1f, fade_in_length * 0.8f).Then() // t = 0.8 .ScaleTo(1.1f, fade_in_length * 0.8f).Then() // t = 0.8
.Delay(fade_in_length * 0.2f) // t = 1.0 .Delay(fade_in_length * 0.2f) // t = 1.0
.ScaleTo(0.9f, fade_in_length * 0.2f).Then() // t = 1.2 .ScaleTo(0.9f, fade_in_length * 0.2f).Then() // t = 1.2
// stable dictates scale of 0.9->1 over time 1.0 to 1.4, but we are already at 1.2. // stable dictates scale of 0.9->1 over time 1.0 to 1.4, but we are already at 1.2.
// so we need to force the current value to be correct at 1.2 (0.95) then complete the // so we need to force the current value to be correct at 1.2 (0.95) then complete the
// second half of the transform. // second half of the transform.