Releases: retrotheft/svelte-mainloop
Releases · retrotheft/svelte-mainloop
v1.1.3
v1.1.2
[1.1.2] - 2024-12-21
Fixed
- now checks for
window
and provides a no-op loop for ssr environments. Should work in SvelteKit now.
Added
- added
AutoType.svelte
to Test-App - added
test-ssr
app for SvelteKit testing
Dependencies
- removed
@types/mainloop.js
from devDependencies
v1.1.1
v1.1.0
Changelog
[1.1.0] - 2024-12-16
- modernised and internalised
mainloop.js
, removed as dependency- this was required in order to get the library to work on the Svelte REPL
- switched to es module export, removed old module exports
- updated variable declarations
- kept all original comments intact, added some jsdoc types
- added a note about noop vs conditional performance, no change functionally
- fixed incorrect jsdoc type imports in
JoinLoop.svelte
v1.0.1
Changes in 1.0.1
- Removed "log update functions" button from ViewLoop component
Initial Release v.1.0.0
Initial Release
A svelte wrapper for mainloop.js that handles function registration and cleanup, and lets you join and leave the loop with a single component. It provides debugging info and tools, exposes all of the standard mainloop.js functionality, is fully typed, and provides inline documentation through intellisense.
Features
- Easy loop joining/leaving with
<JoinLoop>
component - Automatic cleanup when components are removed
- Delta time provided in seconds for easier calculations
- Debug interface via
<ViewLoop>
component - Full TypeScript support with inline documentation
- Access to all mainloop.js stages (begin, update, draw, end)
Installation
npm install svelte-mainloop
Basic Usage
<script>
import { JoinLoop } from 'svelte-mainloop'
function update(delta) {
// do something
}
</script>
<JoinLoop {update}>
More info in the README.
You may also like to read the official MainLoop.js documentation.