-
-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
⚡ ct.timer and (Issue 151) ct.flow, ct.u.wait, ct.tween now operate b…
…ased on ct.delta, with optional setTimeout mode (#179 by @naturecodevoid) Co-authored-by: Cosmo Myzrail Gorynych <[email protected]>
- Loading branch information
1 parent
ef8aaa3
commit b5b560f
Showing
20 changed files
with
626 additions
and
216 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,89 +1,91 @@ | ||
# Mac | ||
|
||
.DS_Store | ||
|
||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
|
||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
|
||
# node-waf configuration | ||
.lock-wscript | ||
|
||
# Compiled binary addons (http://nodejs.org/api/addons.html) | ||
build/Release | ||
|
||
# Dependency directory | ||
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git | ||
node_modules | ||
bower_components | ||
|
||
temp/ | ||
desktop\.ini | ||
*.png~ | ||
.directory | ||
|
||
# Generated files | ||
src/typedefs/ct.js/types.d.ts | ||
app/examples | ||
app/data/bundle.js | ||
app/data/bundle.css | ||
app/data/node_requires/**/* | ||
app/data/fonts/style/.css | ||
app/data/theme*.css | ||
app/data/typedefs/global.d.ts | ||
app/data/typedefs/pixi.js.d.ts | ||
/app/data/docs | ||
app/index.html | ||
app/preview.html | ||
app/empty.html | ||
app/debuggerToolbar.html | ||
app/qrCodePanel.html | ||
app/exportDesktop | ||
app/temp | ||
/temp | ||
app/data/fonts/style/.css | ||
app/data/patronsCache.csv | ||
builds | ||
build | ||
cache | ||
tempChangelog.md | ||
|
||
# tests | ||
error_screenshots/ | ||
reports/ | ||
|
||
# ct specific | ||
/export | ||
app/zipexport | ||
app/*.ict.zip | ||
app/Screenshot of *.png | ||
app/export.zip | ||
app/export | ||
*.ict.recovery | ||
|
||
# editor-specific | ||
/.vscode | ||
|
||
# docs | ||
docs/db.json | ||
docs/node_modules | ||
docs/public | ||
app/data/icons.svg | ||
export.zip | ||
app/pleaseCtJSLoadWithoutGPUAccelerationMmkay | ||
app/debugger.html | ||
# Mac | ||
|
||
.DS_Store | ||
|
||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
|
||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
|
||
# node-waf configuration | ||
.lock-wscript | ||
|
||
# Compiled binary addons (http://nodejs.org/api/addons.html) | ||
build/Release | ||
|
||
# Dependency directory | ||
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git | ||
node_modules | ||
bower_components | ||
|
||
temp/ | ||
desktop\.ini | ||
*.png~ | ||
.directory | ||
|
||
# Generated files | ||
src/typedefs/ct.js/types.d.ts | ||
app/examples | ||
app/data/bundle.js | ||
app/data/bundle.css | ||
app/data/node_requires/**/* | ||
app/data/fonts/style/.css | ||
app/data/theme*.css | ||
app/data/typedefs/global.d.ts | ||
app/data/typedefs/pixi.js.d.ts | ||
/app/data/docs | ||
app/index.html | ||
app/preview.html | ||
app/empty.html | ||
app/debuggerToolbar.html | ||
app/qrCodePanel.html | ||
app/exportDesktop | ||
app/temp | ||
/temp | ||
app/data/fonts/style/.css | ||
app/data/patronsCache.csv | ||
builds | ||
build | ||
cache | ||
tempChangelog.md | ||
|
||
# tests | ||
error_screenshots/ | ||
reports/ | ||
|
||
# ct specific | ||
/export | ||
app/zipexport | ||
app/*.ict.zip | ||
app/Screenshot of *.png | ||
app/export.zip | ||
app/export | ||
*.ict.recovery | ||
|
||
# editor-specific | ||
/.vscode | ||
|
||
# docs | ||
docs/db.json | ||
docs/node_modules | ||
docs/public | ||
app/data/icons.svg | ||
export.zip | ||
app/pleaseCtJSLoadWithoutGPUAccelerationMmkay | ||
app/debugger.html | ||
|
||
**/**/*.orig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1 @@ | ||
A collection of high-level utilities for flow control, that are especially useful while working with asynchronous events. | ||
|
||
Please note that this function **ignores the scaling of `ct.delta`**, meaning that triggers will work even while the game is paused. | ||
A collection of high-level utilities for flow control, that are especially useful while working with asynchronous events. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.