Update tv.ts

This commit is contained in:
syuilo 2026-04-30 16:48:45 +09:00
commit 157b4673fd

View file

@ -41,7 +41,7 @@ export const tv = defineObject({
const light = new BABYLON.SpotLight('', new BABYLON.Vector3(cm(0), cm(30) / Math.abs(scale.y), 0), new BABYLON.Vector3(0, 0, 1), Math.PI / 1, 2, scene, room?.lightContainer != null);
light.parent = model.root;
light.diffuse = new BABYLON.Color3(1.0, 1.0, 1.0);
light.range = cm(150);
light.range = cm(200);
light.radius = cm(40);
if (room?.lightContainer != null) room.lightContainer.addLight(light);