From ab967024b6a055c2cd39d6e39a3d18fdc68385b7 Mon Sep 17 00:00:00 2001 From: Robert Long <robert@robertlong.me> Date: Fri, 20 Jul 2018 18:56:38 -0700 Subject: [PATCH] Add additional light component mappings --- src/gltf-component-mappings.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gltf-component-mappings.js b/src/gltf-component-mappings.js index 0552e61c8..cc22ef521 100644 --- a/src/gltf-component-mappings.js +++ b/src/gltf-component-mappings.js @@ -11,6 +11,9 @@ AFRAME.GLTFModelPlus.registerComponent("gltf-model-plus", "gltf-model-plus"); AFRAME.GLTFModelPlus.registerComponent("body", "body"); AFRAME.GLTFModelPlus.registerComponent("hide-when-quality", "hide-when-quality"); AFRAME.GLTFModelPlus.registerComponent("light", "light"); +AFRAME.GLTFModelPlus.registerComponent("directional-light", "light"); +AFRAME.GLTFModelPlus.registerComponent("ambient-light", "light"); +AFRAME.GLTFModelPlus.registerComponent("point-light", "light"); AFRAME.GLTFModelPlus.registerComponent("skybox", "skybox"); AFRAME.GLTFModelPlus.registerComponent("layers", "layers"); AFRAME.GLTFModelPlus.registerComponent("shadow", "shadow"); -- GitLab