melonjs 10.7.0 → 10.7.1
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/dist/melonjs.module.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* melonJS Game Engine - v10.7.
|
|
2
|
+
* melonJS Game Engine - v10.7.1
|
|
3
3
|
* http://www.melonjs.org
|
|
4
4
|
* melonjs is licensed under the MIT License.
|
|
5
5
|
* http://www.opensource.org/licenses/mit-license
|
|
@@ -22936,7 +22936,6 @@ class CanvasRenderer extends Renderer {
|
|
|
22936
22936
|
this.getScreenCanvas().addEventListener("contextrestored", () => {
|
|
22937
22937
|
this.isContextValid = true;
|
|
22938
22938
|
event.emit(event.ONCONTEXT_RESTORED, this);
|
|
22939
|
-
me.game.repaint();
|
|
22940
22939
|
}, false );
|
|
22941
22940
|
}
|
|
22942
22941
|
|
|
@@ -32980,10 +32979,10 @@ class BasePlugin {
|
|
|
32980
32979
|
* this can be overridden by the plugin
|
|
32981
32980
|
* @public
|
|
32982
32981
|
* @type {string}
|
|
32983
|
-
* @default "10.7.
|
|
32982
|
+
* @default "10.7.1"
|
|
32984
32983
|
* @name plugin.Base#version
|
|
32985
32984
|
*/
|
|
32986
|
-
this.version = "10.7.
|
|
32985
|
+
this.version = "10.7.1";
|
|
32987
32986
|
}
|
|
32988
32987
|
}
|
|
32989
32988
|
|
|
@@ -37495,7 +37494,7 @@ class DroptargetEntity extends DropTarget {
|
|
|
37495
37494
|
* @name version
|
|
37496
37495
|
* @type {string}
|
|
37497
37496
|
*/
|
|
37498
|
-
const version = "10.7.
|
|
37497
|
+
const version = "10.7.1";
|
|
37499
37498
|
|
|
37500
37499
|
|
|
37501
37500
|
/**
|
package/package.json
CHANGED