@preference-sl/pref-viewer 2.9.0-beta.4 → 2.9.0-beta.5

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@preference-sl/pref-viewer",
3
- "version": "2.9.0-beta.4",
3
+ "version": "2.9.0-beta.5",
4
4
  "description": "Web Component to preview GLTF models with Babylon.js",
5
5
  "author": "Alex Moreno Palacio <amoreno@preference.es>",
6
6
  "scripts": {
package/src/index.js CHANGED
@@ -186,7 +186,7 @@ class PrefViewer extends HTMLElement {
186
186
 
187
187
  // 4) Camera‐attached headlight
188
188
  this.cameraLight = new PointLight(
189
- "cameraLight",
189
+ "pl",
190
190
  this.camera.position,
191
191
  this.scene
192
192
  );