littlejsengine 1.8.1 → 1.8.3
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 +3 -2
- package/build/littlejs.d.ts +509 -509
- package/build/littlejs.esm.js +140 -127
- package/build/littlejs.esm.min.js +1 -1
- package/build/littlejs.js +57 -44
- package/build/littlejs.min.js +1 -1
- package/build/littlejs.release.js +57 -44
- package/examples/breakout/index.html +3 -3
- package/examples/breakoutTutorial/README.md +1 -1
- package/examples/breakoutTutorial/index.html +2 -2
- package/examples/electron/index.html +2 -2
- package/examples/js13k/index.html +13 -13
- package/examples/module/game.js +1 -1
- package/examples/module/index.html +1 -1
- package/examples/particles/index.html +1 -1
- package/examples/platformer/index.html +6 -6
- package/examples/puzzle/index.html +2 -2
- package/examples/starter/index.html +13 -13
- package/examples/stress/index.html +3 -3
- package/examples/typescript/game.ts +1 -1
- package/examples/typescript/index.html +1 -1
- package/package.json +2 -1
- package/src/engine.js +2 -2
- package/src/engineAudio.js +2 -1
- package/src/engineDraw.js +35 -18
- package/src/engineExport.js +83 -83
- package/src/engineObject.js +1 -0
- package/src/engineWebGL.js +17 -23
package/README.md
CHANGED
|
@@ -33,7 +33,8 @@ LittleJS is a small but powerful game engine with many features and no dependenc
|
|
|
33
33
|
|
|
34
34
|
### 🔊 Audio
|
|
35
35
|
|
|
36
|
-
- Positional sound effects with wave or
|
|
36
|
+
- Positional sound effects with wave files or ZzFX
|
|
37
|
+
- Use [ZzFX](https://killedbyapixel.github.io/ZzFX/) sound effect generator to play sounds without asset files
|
|
37
38
|
- Music with mp3, ogg, wave, or [ZzFXM](https://keithclark.github.io/ZzFXM/)
|
|
38
39
|
|
|
39
40
|
### 🎮 Input
|
|
@@ -66,7 +67,7 @@ LittleJS is a small but powerful game engine with many features and no dependenc
|
|
|
66
67
|
## Demos
|
|
67
68
|
|
|
68
69
|
### [Starter Project](https://killedbyapixel.github.io/LittleJS/examples/starter/) - Clean example with only a few things to get you started
|
|
69
|
-
### [Breakout](https://killedbyapixel.github.io/LittleJS/examples/breakout/) -
|
|
70
|
+
### [Breakout](https://killedbyapixel.github.io/LittleJS/examples/breakout/) - Block breaking game with post processing effect
|
|
70
71
|
### [Puzzle Game](https://killedbyapixel.github.io/LittleJS/examples/puzzle/) - Match 3 puzzle game with HD rendering and high score tracking
|
|
71
72
|
### [Platformer](https://killedbyapixel.github.io/LittleJS/examples/platformer/) - Platformer/shooter with procedural generation and destruction
|
|
72
73
|
### [Stress Test](https://killedbyapixel.github.io/LittleJS/examples/stress/) - Max sprite/object test and music system demo
|