@woosh/meep-engine 2.128.8 → 2.128.10

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",
8
+ "version": "2.128.10",
9
9
  "main": "build/meep.module.js",
10
10
  "module": "build/meep.module.js",
11
11
  "exports": {
@@ -529,10 +529,10 @@ export class RenderGraph {
529
529
  out.add("# Resource Nodes");
530
530
  for (const node of this.__resource_nodes) {
531
531
  const entry = this.__resource_registry[node.resource_id];
532
- out.add(`R${entry.resource_id}_${node.version} [label=<{ {<B>${node.name}</B>${node.version > 0 ? `<FONT>v${node.version}</FONT>` : ""}<BR/>${entry.toString()}} | {Index: ${entry.resource_id}<BR/> Refs : ${node.ref_count} } }> style=filled, fillcolor=${entry.isImported() ? "lightsteelblue" : "skyblue"}]`);
532
+ out.add(`R${entry.resource_id}_${node.version} [label=<{ {<B>${node.name}</B>${node.version > 0 ? ` <FONT>v${node.version}</FONT>` : ""}<BR/>${entry.toString()}} | {Index: ${entry.resource_id}<BR/> Refs : ${node.ref_count} } }> style=filled, fillcolor=${entry.isImported() ? "lightsteelblue" : "skyblue"}]`);
533
533
  }
534
534
 
535
- // -- Each pass node points to resource that it writes
535
+ // -- Each pass node points to the resource that it writes
536
536
 
537
537
  out.add("");
538
538
  out.add("# Resource Writes");
@@ -547,7 +547,7 @@ export class RenderGraph {
547
547
  out.add("} [color=orangered]");
548
548
  }
549
549
 
550
- // -- Each resource node points to pass where it's consumed
550
+ // -- Each resource node points to the pass where it's consumed
551
551
 
552
552
  out.add("");
553
553
  out.add("# Resource Reads");
@@ -88,7 +88,7 @@ export class ResourceEntry {
88
88
  toString() {
89
89
  if (this.resource_descriptor !== null) {
90
90
 
91
- return this.resource_descriptor.type;
91
+ return this.resource_descriptor.toString();
92
92
 
93
93
  }
94
94