@woosh/meep-engine 2.45.1 → 2.45.2
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.
|
@@ -8,8 +8,10 @@ export class ForwardPlusRenderingPlugin extends EnginePlugin {
|
|
|
8
8
|
constructor() {
|
|
9
9
|
super();
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
const lightManager = new LightManager();
|
|
12
|
+
lightManager.setTileMapResolution(16, 8, 8);
|
|
13
|
+
|
|
14
|
+
this.__light_manager = lightManager;
|
|
13
15
|
|
|
14
16
|
this.__resolution = new ThreeVector2();
|
|
15
17
|
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"productName": "Meep",
|
|
6
6
|
"description": "production-ready JavaScript game engine based on Entity Component System Architecture",
|
|
7
7
|
"author": "Alexander Goldring",
|
|
8
|
-
"version": "2.45.
|
|
8
|
+
"version": "2.45.2",
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"gl-matrix": "3.4.3",
|
|
11
11
|
"fast-levenshtein": "2.0.6",
|