File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
engine/core/src/main/resources/view/core Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -496,12 +496,13 @@ export class Drawer {
496496
497497 checkSteppedToNextFrame ( scope , selectedFrame , progress ) {
498498 return this . checkStepped ( scope , selectedFrame , progress ) &&
499- ( scope . currentFrame === selectedFrame . previous || ( scope . currentFrame === selectedFrame && scope . currentProgress !== progress ) )
499+ ( ( scope . currentFrame === selectedFrame . previous && scope . currentFrame !== selectedFrame ) || ( scope . currentFrame === selectedFrame && scope . currentProgress !== progress ) )
500500 }
501501
502502 checkSteppedToPreviousFrame ( scope , selectedFrame , progress ) {
503503 return this . checkStepped ( scope , selectedFrame , progress ) &&
504- scope . currentFrame . previous === selectedFrame
504+ scope . currentFrame . previous === selectedFrame &&
505+ scope . currentFrame !== selectedFrame
505506 }
506507
507508 initEndScene ( scope , failure ) {
You can’t perform that action at this time.
0 commit comments