You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Draw an interactive progress bar at the bottom of the view during
playback. Click or drag it to seek to a point in time.
--animation-progress becomes a mode string instead of a boolean flag:
none, default (the bar alone), or advanced (adds time range, animation
name, current time, keyframe markers and a hover tooltip). A bare
--animation-progress implies default.
Seeking is backed by two new commands, jump_to_time and
jump_to_time_relative (time in seconds), mirroring the jump_to_frame /
jump_to_frame_relative pair. They are wired through the ImGui actor,
renderer and animation manager so the bar tracks playback.
The scalar bar is offset by the progress bar height so the two no longer
overlap.
f3d_test(NAMETestVerboseAssimpAnimationIndicesErrorDATAanimatedLights.fbxPLUGINassimpARGS--animation-indices=48NO_BASELINEREGEXP"Specified animation index: 48 is not in range")
f3d_test(NAMETestVerboseAnimationWrongAnimationTimeHighDATABoxAnimated.gltfARGS--animation-time=10--verboseREGEXP"Animation time 10 is outside of range \\[0, 3\\.70833\\], using 3\\.70833"NO_BASELINE)
@@ -453,24 +454,30 @@ f3d_test(NAME TestCommandScriptRemoveFileGroups SCRIPT DATA dragon.vtu NO_DATA_F
453
454
f3d_test(NAMETestCommandScriptInvalidReaderOptionsSCRIPTDATAdragon.vtuREGEXP"point to an inexistent option, ignoring"NO_BASELINE) # set_reader_option invalid value
454
455
f3d_test(NAMETestCommandScriptHelpSCRIPTDATAdragon.vtuREGEX"set a libf3d option"NO_BASELINE) # help set
455
456
f3d_test(NAMETestCommandScriptHelpInvalidSCRIPTDATAdragon.vtuREGEX"is not a recognized command"NO_BASELINE) # help invalid
f3d_test(NAMETestCommandScriptSetCameraLeftSCRIPTDATAdragon.vtu) # set_camera left
@@ -548,6 +555,7 @@ f3d_test(NAME TestAnimationIndicesWarningRange DATA InterpolationTest.glb ARGS -
548
555
f3d_test(NAMETestAnimationIndicesWarningNoneDATAcow.vtpARGS--animation-indices=1REGEXP"Animation indices have been specified but there are no animation available"NO_BASELINE)
549
556
f3d_test(NAMETestAnimationIndicesWarningAllAnimationsDATAInterpolationTest.glbARGS--animation-indices=-1,2,3REGEXP"Multiple animation indices have been specified include a negative one, all animations will be selected"NO_BASELINE)
550
557
f3d_test(NAMETestVerboseAnimationNoAnimationTimeDATAcow.vtpARGS--animation-time=2--verboseREGEXP"No animation available, cannot load a specific animation time"NO_BASELINE)
558
+
f3d_test(NAMETestInvalidAnimationProgressModeDATAcow.vtpARGS--animation-progress=fooREGEXP"foo is an invalid animation progress mode"NO_BASELINE)
f3d_test(NAMETestAnimationIndicesWarningSingleDATAsoldier_animations.mdlARGS--animation-indices=1,2REGEXP"Multiple animation indices have been specified but currently loaded files may not support enabling multiple animations"NO_BASELINE)
0 commit comments