1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-30 20:24:06 +02:00
This commit is contained in:
syuilo
2026-04-04 20:23:24 +09:00
parent ba4d495b42
commit c454b8922b
6 changed files with 22 additions and 10 deletions

View File

@@ -14,14 +14,15 @@ export const beamLamp = defineObject({
default: {},
},
placement: 'top',
createInstance: ({ root, scene }) => {
createInstance: ({ room, root, scene }) => {
return {
onInited: () => {
const light = new BABYLON.PointLight('beamLampLight', new BABYLON.Vector3(0, 10/*cm*/, 0), scene);
const light = new BABYLON.PointLight('beamLampLight', new BABYLON.Vector3(0, 10/*cm*/, 0), scene, true);
light.parent = root;
light.diffuse = new BABYLON.Color3(1.0, 0.5, 0.2);
light.intensity = 300;
light.range = 100/*cm*/;
room.lightContainer.addLight(light);
},
interactions: {},
};