File tree Expand file tree Collapse file tree 2 files changed +13
-7
lines changed
engine/core/src/main/resources/view/core Expand file tree Collapse file tree 2 files changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -40,8 +40,4 @@ export function ease (t) {
4040
4141export 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
Original file line number Diff line number Diff line change 22
33The 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
You can’t perform that action at this time.
0 commit comments