@woosh/meep-engine 2.128.18 → 2.128.19
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
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"description": "Pure JavaScript game engine. Fully featured and production ready.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"author": "Alexander Goldring",
|
|
8
|
-
"version": "2.128.
|
|
8
|
+
"version": "2.128.19",
|
|
9
9
|
"main": "build/meep.module.js",
|
|
10
10
|
"module": "build/meep.module.js",
|
|
11
11
|
"exports": {
|
|
@@ -557,7 +557,7 @@ export class RenderGraph {
|
|
|
557
557
|
// remap hue away from red
|
|
558
558
|
color_hue = lerp(0.10, 0.90, color_hue);
|
|
559
559
|
|
|
560
|
-
const saturation = entry.isImported() ? 0.
|
|
560
|
+
const saturation = entry.isImported() ? 0.2 : 0.07;
|
|
561
561
|
|
|
562
562
|
const color_rgb = [];
|
|
563
563
|
okhsv_to_linear_srgb(color_rgb, color_hue, saturation, 1)
|