@woosh/meep-engine 2.119.66 → 2.119.67
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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Vector2 as ThreeVector2 } from "three";
|
|
2
2
|
import { EnginePlugin } from "../../../../plugin/EnginePlugin.js";
|
|
3
|
+
import { LightManager } from "../LightManager.js";
|
|
3
4
|
import { MaterialTransformer } from "./MaterialTransformer.js";
|
|
4
|
-
import { Vector2 as ThreeVector2 } from "three";
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
export class ForwardPlusRenderingPlugin extends EnginePlugin {
|
|
@@ -9,7 +9,7 @@ export class ForwardPlusRenderingPlugin extends EnginePlugin {
|
|
|
9
9
|
super();
|
|
10
10
|
|
|
11
11
|
const lightManager = new LightManager();
|
|
12
|
-
lightManager.setTileMapResolution(
|
|
12
|
+
lightManager.setTileMapResolution(12, 6, 4);
|
|
13
13
|
|
|
14
14
|
this.__light_manager = lightManager;
|
|
15
15
|
|