1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-30 01:44:30 +02:00
This commit is contained in:
syuilo
2026-04-27 20:57:30 +09:00
parent 634cdf5e1e
commit f19040888a
3 changed files with 24 additions and 5 deletions

View File

@@ -225,6 +225,7 @@ export class RoomEngine extends EventEmitter<RoomEngineEvents> {
engine: BABYLON.WebGPUEngine;
graphicsQuality: number;
fps: number | null;
sharpen: boolean;
useVirtualJoystick?: boolean;
}) {
super();
@@ -455,8 +456,10 @@ export class RoomEngine extends EventEmitter<RoomEngineEvents> {
//pipeline.chromaticAberration.radialIntensity = 2;
}
pipeline.sharpenEnabled = true;
pipeline.sharpen.edgeAmount = 0.5;
if (options.sharpen) {
pipeline.sharpenEnabled = true;
pipeline.sharpen.edgeAmount = 0.5;
}
}
if (_DEV_) {