lighting.LightLoader

Lighting modules can also load other types of lighting into the scene. In this example by a Blender-native light type with lighting.LightLoader

    {
      "module": "lighting.LightLoader",
      "config": {
        "lights": [
          {
            "type": "POINT",
            "location": [5, -5, 5],
            "energy": 1000
          }
        ]
      }
    }

Last updated