@woosh/meep-engine 2.47.26 → 2.47.27

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": "Fully featured ECS game engine written in JavaScript",
6
6
  "type": "module",
7
7
  "author": "Alexander Goldring",
8
- "version": "2.47.26",
8
+ "version": "2.47.27",
9
9
  "main": "build/meep.module.js",
10
10
  "module": "build/meep.module.js",
11
11
  "exports": {
@@ -325,6 +325,9 @@ export class FPDecalSystem extends AbstractContextSystem {
325
325
  continue;
326
326
  }
327
327
 
328
+ if(!filter_function.call(filter_function_context,entity,decal)){
329
+ continue;
330
+ }
328
331
 
329
332
  const transform = ecd.getComponent(entity, Transform);
330
333