1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-13 15:15:45 +02:00
This commit is contained in:
syuilo
2026-03-27 10:55:33 +09:00
parent 9bc0d7b361
commit 8619d0156e
4 changed files with 23 additions and 0 deletions

View File

@@ -61,6 +61,7 @@ import { tetrapod } from './objects/tetrapod.js';
import { tv } from './objects/tv.js';
import { wallClock } from './objects/wallClock.js';
import { wallShelf } from './objects/wallShelf.js';
import { woodRingFloorLamp } from './objects/woodRingFloorLamp.js';
import { woodSoundAbsorbingPanel } from './objects/woodSoundAbsorbingPanel.js';
export const OBJECT_DEFS = [
@@ -121,6 +122,7 @@ export const OBJECT_DEFS = [
tv,
wallClock,
wallShelf,
woodRingFloorLamp,
woodSoundAbsorbingPanel,
debugHipoly,
];

View File

@@ -0,0 +1,21 @@
/*
* SPDX-FileCopyrightText: syuilo and misskey-project
* SPDX-License-Identifier: AGPL-3.0-only
*/
import { defineObject } from '../engine.js';
export const woodRingFloorLamp = defineObject({
id: 'woodRingFloorLamp',
name: 'Wood Ring Floor Lamp',
options: {
schema: {},
default: {},
},
placement: 'floor',
createInstance: () => {
return {
interactions: {},
};
},
});