We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d52129 commit aefe5d6Copy full SHA for aefe5d6
1 file changed
Robust.Client/Animations/AnimationTrackProperty.cs
@@ -43,7 +43,9 @@ public override (int KeyFrameIndex, float FramePlayingTime) AdvancePlayback(obje
43
var nextKeyFrame = keyFrameIndex + 1;
44
if (nextKeyFrame == 0)
45
{
46
- // Still before the first keyframe, do nothing.
+ // At the start snap the anim to the first keyframe
47
+ value = KeyFrames[0].Value;
48
+ ApplyProperty(context, value);
49
return (keyFrameIndex, playingTime);
50
}
51
0 commit comments