littlejsengine 1.8.4 â 1.8.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -0
- package/build/littlejs.d.ts +2021 -0
- package/build/littlejs.esm.js +41 -29
- package/build/littlejs.esm.min.js +1 -0
- package/build/littlejs.js +40 -29
- package/build/littlejs.min.js +1 -1
- package/build/littlejs.release.js +41 -30
- package/examples/breakout/index.html +0 -1
- package/examples/breakoutTutorial/index.html +0 -1
- package/examples/electron/index.html +0 -1
- package/examples/module/index.html +0 -1
- package/examples/particles/index.html +0 -1
- package/examples/particles/tiles.png +0 -0
- package/examples/platformer/gamePlayer.js +1 -1
- package/examples/puzzle/index.html +0 -1
- package/examples/starter/build.js +1 -0
- package/examples/starter/index.html +0 -1
- package/examples/stress/index.html +0 -1
- package/examples/typescript/game.js +1 -1
- package/examples/typescript/index.html +0 -1
- package/package.json +1 -1
- package/src/engine.js +1 -1
- package/src/engineAudio.js +1 -1
- package/src/engineExport.js +1 -0
- package/src/engineInput.js +24 -14
- package/src/engineObject.js +1 -1
- package/src/engineParticles.js +1 -1
- package/src/engineRelease.js +1 -1
- package/src/engineTileLayer.js +8 -8
- package/src/engineUtilities.js +1 -1
- package/src/engineWebGL.js +3 -2
package/README.md
CHANGED
|
@@ -12,6 +12,10 @@ LittleJS is a lightweight open source HTML5 game engine for modern web developme
|
|
|
12
12
|
It's small footprint is packed with a comprehensive feature set including hybrid rendering, physics, particles, sound effects, music, and input handling.
|
|
13
13
|
The code is very clean and well documented with some fun examples to get you started. Choo-Choo! đ
|
|
14
14
|
|
|
15
|
+
### đ Join the First Ever LittleJS Game Jam
|
|
16
|
+
|
|
17
|
+
*The LittleJS Game Jam will take place From Nov 11 to Dec 12! Unleash your creativity and develop amazing games using the LittleJS game engine. đšī¸đŽ [Sign up today and get more info about the jam on itch.io!](https://itch.io/jam/littlejs-game-jam)*
|
|
18
|
+
|
|
15
19
|
<div align="center">
|
|
16
20
|
|
|
17
21
|
## [Demo](https://killedbyapixel.github.io/LittleJS/examples/starter/) | [Docs](https://killedbyapixel.github.io/LittleJS/docs) | [Trailer](https://youtu.be/chuBzGjv7Ms) | [Discord](https://discord.gg/zb7hcGkyZe) | [Tutorial](https://github.com/KilledByAPixel/LittleJS/blob/main/examples/breakoutTutorial/README.md)
|