1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-21 20:25:36 +02:00
This commit is contained in:
syuilo
2026-04-30 16:34:07 +09:00
parent 6cf90fd714
commit a471fe16fa
6 changed files with 16 additions and 11 deletions

View File

@@ -1612,9 +1612,9 @@ export class RoomEngine extends EventEmitter<RoomEngineEvents> {
}
this.sr.disableSnapshotRendering();
if (this.gl != null) {
this.gl.isEnabled = false; // 重いので切る
}
//if (this.gl != null) {
// this.gl.isEnabled = false; // 重いので切る
//}
if (this.gridPlane.material == null) {
import('@babylonjs/materials').then(m => {
@@ -1639,9 +1639,9 @@ export class RoomEngine extends EventEmitter<RoomEngineEvents> {
await this.bake();
this.sr.enableSnapshotRendering();
if (this.gl != null) {
this.gl.isEnabled = true;
}
//if (this.gl != null) {
// this.gl.isEnabled = true;
//}
}
public async bake() {