Skip to content

Commit 1774a41

Browse files
author
Julien
committed
fix(sdk): fixed step by step forwards not updating the view
1 parent 00e9e96 commit 1774a41

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

engine/core/src/main/resources/view/core/Drawer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ export class Drawer {
437437

438438
updateScene (scope, question, frames, frameNumber, progress, speed, reason, demo, force) {
439439
const parsedFrame = frames[frameNumber]
440-
if (!force && this.checkSteppedToNextFrame(scope, parsedFrame)) {
440+
if (!force && this.stepByStepAnimateSpeed && this.checkSteppedToNextFrame(scope, parsedFrame)) {
441441
this.startAsynchronousAnimation(scope, progress, parsedFrame)
442442
return
443443
}

playground/misc/misc-3-release-notes.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,24 @@
22

33
The CodinGame SDK is regularly updated and improved. This document lets you know what changed in the latest releases.
44

5+
## 3.5.2
6+
7+
### 🐞 Bug fix
8+
9+
- Fixed the `skewX` and `skewY` interpolation method.
10+
- Fixed the next frame button no longer updating the view
11+
512
## 3.5.1
613

714
### 🐞 Bug fix
815

916
- Fixed the `skewX` and `skewY` properties for all `Entities`.
1017

18+
### ⚠️ Known issues
19+
20+
- `skew` property is not functional, to use it please move to 3.5.2 or higher
21+
- the next frame button no longer updates the view
22+
1123
## 3.5.0
1224

1325
### 🎁 New features
@@ -19,9 +31,10 @@ The CodinGame SDK is regularly updated and improved. This document lets you know
1931

2032
- Updated the test page's player to match the codingame IDE
2133

22-
### ⚠️ Known issues
34+
### ⚠️ Known issues
2335

24-
- `skew` property is not functional, to use it please move to 3.5.1 or higher
36+
- `skew` property is not functional, to use it please move to 3.5.2 or higher
37+
- the next frame button no longer updates the view
2538

2639
## 3.4.10
2740

0 commit comments

Comments
 (0)