Skip to content

Commit a186f80

Browse files
Merge branch 'sdk-remove-easinout' into 'master'
[REFACTOR][SDK] remove unused code, update changelog See merge request codingame/game-engine!294
2 parents ab11d8e + 7e02cb0 commit a186f80

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

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

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,4 @@ export function ease (t) {
4040

4141
export const easeIn = t => t**3
4242

43-
export const easeOut = t => 1 + (t - 1)**3
44-
45-
export const easeInOut = t => t < 0.5
46-
? 4 * t**3
47-
: 4 * (t-1)**3 + 1
43+
export const easeOut = t => 1 + (t - 1)**3

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

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

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

5-
## 4.0.1
5+
## Next Release
6+
7+
### 📝 Refactoring
8+
9+
- Removed unused code
10+
11+
## 4.0.2
612

713
### 🐞 Bug fix
814

915
- When exporting a game, folders named "node_modules" are now ignored.
1016
- Renamed viewer modules' `name` variable to `moduleName` for consistency and future-proofing.
1117

18+
## 4.0.1
19+
20+
⛔ Broken version
21+
1222
## 4.0.0
1323

1424
### 🎁 Features
@@ -180,7 +190,7 @@ The CodinGame SDK is regularly updated and improved. This document lets you know
180190

181191
## 3.8.0
182192

183-
- Broken version, use 3.8.1
193+
Broken version
184194

185195
## 3.7.0
186196

0 commit comments

Comments
 (0)