1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-07-27 18:54:39 +02:00

Update lobby.ts

This commit is contained in:
syuilo
2026-07-27 20:44:13 +09:00
parent 319ddc674c
commit ee2d16b237

View File

@@ -369,6 +369,7 @@ export class LobbyEnvManager extends WorldEnvManager {
const time = Date.now();
worldRingH.rotation.x = ((time % _12h) / _12h) * Math.PI * 2;
worldRingM.rotation.y = -(((time % _1h) / _1h) * Math.PI);
this.engine.sr.updateMesh([worldRingH, ...worldRingH.getChildMeshes(), worldRingM, ...worldRingM.getChildMeshes()], false);
}, 100);
const screenMeshes = this.meshes.filter(m => m.name.includes('__SCREEN__'));