@woosh/meep-engine 2.93.2 → 2.93.3
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/build/meep.cjs +1 -1
- package/build/meep.min.js +1 -1
- package/build/meep.module.js +1 -1
- package/package.json +1 -1
- package/src/engine/animation/clip/ecd_bind_animation_curve.d.ts.map +1 -1
- package/src/engine/animation/clip/ecd_bind_animation_curve.js +7 -3
- package/src/engine/animation/curve/prototypeGLTF.js +15 -11
- package/src/engine/ecs/Entity.js +1 -1
- package/src/engine/ecs/EntityComponentDataset.js +0 -14
- package/src/engine/ecs/computeComponentClassName.d.ts +2 -0
- package/src/engine/ecs/computeComponentClassName.d.ts.map +1 -0
- package/src/engine/ecs/computeComponentClassName.js +13 -0
package/build/meep.cjs
CHANGED
|
@@ -72628,7 +72628,7 @@ class Entity {
|
|
|
72628
72628
|
const component = this.getComponent(klass);
|
|
72629
72629
|
|
|
72630
72630
|
if (component === null) {
|
|
72631
|
-
throw new Error(`Component of given class not found`);
|
|
72631
|
+
throw new Error(`Component of given class '${computeComponentClassName(klass)}' not found`);
|
|
72632
72632
|
}
|
|
72633
72633
|
|
|
72634
72634
|
return component;
|