melonjs 10.5.2 → 10.6.0
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 -6
- package/dist/melonjs.js +4314 -4177
- package/dist/melonjs.min.js +14 -14
- package/dist/melonjs.module.d.ts +242 -267
- package/dist/melonjs.module.js +4646 -4523
- package/package.json +10 -10
- package/src/camera/camera2d.js +11 -10
- package/src/geometries/ellipse.js +1 -1
- package/src/geometries/poly.js +1 -1
- package/src/index.js +1 -1
- package/src/input/pointerevent.js +1 -1
- package/src/level/tiled/TMXLayer.js +1 -1
- package/src/level/tiled/TMXTileMap.js +1 -1
- package/src/level/tiled/renderer/TMXHexagonalRenderer.js +1 -1
- package/src/level/tiled/renderer/TMXIsometricRenderer.js +1 -1
- package/src/level/tiled/renderer/TMXOrthogonalRenderer.js +1 -1
- package/src/level/tiled/renderer/TMXRenderer.js +1 -1
- package/src/level/tiled/renderer/TMXStaggeredRenderer.js +1 -1
- package/src/loader/loadingscreen.js +1 -1
- package/src/math/color.js +1 -1
- package/src/math/matrix2.js +2 -2
- package/src/math/matrix3.js +1 -1
- package/src/math/observable_vector2.js +1 -1
- package/src/math/observable_vector3.js +1 -1
- package/src/math/vector2.js +1 -1
- package/src/math/vector3.js +1 -1
- package/src/particles/emitter.js +1 -1
- package/src/physics/body.js +7 -7
- package/src/renderable/colorlayer.js +1 -1
- package/src/renderable/container.js +11 -1
- package/src/renderable/imagelayer.js +1 -1
- package/src/renderable/nineslicesprite.js +6 -3
- package/src/renderable/renderable.js +18 -1
- package/src/renderable/sprite.js +2 -2
- package/src/state/state.js +6 -6
- package/src/system/pooling.js +150 -155
- package/src/text/bitmaptext.js +30 -86
- package/src/text/text.js +82 -145
- package/src/text/textmetrics.js +168 -0
- package/src/text/textstyle.js +14 -0
- package/src/video/canvas/canvas_renderer.js +21 -5
- package/src/video/renderer.js +1 -3
- package/src/video/texture.js +1 -1
- package/src/video/webgl/buffer/vertex.js +0 -3
- package/src/video/webgl/glshader.js +0 -2
- package/src/video/webgl/webgl_renderer.js +46 -19
package/README.md
CHANGED
|
@@ -116,7 +116,7 @@ me.device.onReady(function () {
|
|
|
116
116
|
}));
|
|
117
117
|
});
|
|
118
118
|
```
|
|
119
|
-
> Simple hello world using melonJS
|
|
119
|
+
> Simple hello world using melonJS 2 (version 10.x or higher)
|
|
120
120
|
|
|
121
121
|
Documentation :
|
|
122
122
|
|
|
@@ -226,12 +226,10 @@ bucket.
|
|
|
226
226
|
Questions, need help ?
|
|
227
227
|
-------------------------------------------------------------------------------
|
|
228
228
|
If you need technical support, you can contact us through the following channels :
|
|
229
|
-
*
|
|
230
|
-
*
|
|
231
|
-
* [
|
|
232
|
-
* [Discord](https://discord.gg/aur7JMk)
|
|
229
|
+
* Forums: with melonJS 2 we moved to a new discourse [forum](https://melonjs.discourse.group), but we can still also find the previous one [here](http://www.html5gamedevs.com/forum/32-melonjs/)
|
|
230
|
+
* Chat: come and chat with us on [discord](https://discord.gg/aur7JMk), or [gitter](https://gitter.im/melonjs/public)
|
|
231
|
+
* we tried to keep our [wikipage](https://github.com/melonjs/melonJS/wiki) up-to-date with useful links, tutorials, and anything related melonJS.
|
|
233
232
|
|
|
234
|
-
For any other non technical related questions, feel free to also send us an [email](mailto:contact@melonjs.org)
|
|
235
233
|
|
|
236
234
|
Sponsors
|
|
237
235
|
-------------------------------------------------------------------------------
|