mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-14 08:45:44 +02:00
wip
This commit is contained in:
@@ -293,6 +293,14 @@ export class RoomController {
|
||||
}
|
||||
}
|
||||
|
||||
public updateRoomLightColor(color: [number, number, number]) {
|
||||
if (this.worker != null) {
|
||||
this.worker.postMessage({ type: 'updateRoomLightColor', color });
|
||||
} else if (this.engine != null) {
|
||||
this.engine.updateRoomLightColor(color);
|
||||
}
|
||||
}
|
||||
|
||||
public beginSelectedInstalledObjectGrabbing() {
|
||||
if (this.worker != null) {
|
||||
this.worker.postMessage({ type: 'beginSelectedInstalledObjectGrabbing' });
|
||||
|
||||
Reference in New Issue
Block a user