This commit is contained in:
syuilo
2026-03-06 14:09:32 +09:00
parent 295c91c245
commit 7ff95b8f8a
4 changed files with 23 additions and 0 deletions

View File

@@ -55,6 +55,7 @@ import { tabletopCalendar } from './objects/tabletopCalendar.js';
import { tabletopDigitalClock } from './objects/tabletopDigitalClock.js';
import { tabletopPictureFrame } from './objects/tabletopPictureFrame.js';
import { tapestry } from './objects/tapestry.js';
import { tetrapod } from './objects/tetrapod.js';
import { tv } from './objects/tv.js';
import { wallClock } from './objects/wallClock.js';
import { wallShelf } from './objects/wallShelf.js';
@@ -113,6 +114,7 @@ export const OBJECT_DEFS = [
tabletopDigitalClock,
tabletopPictureFrame,
tapestry,
tetrapod,
tv,
wallClock,
wallShelf,

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 tetrapod = defineObject({
id: 'tetrapod',
name: '波消ブロック',
options: {
schema: {},
default: {},
},
placement: 'top',
createInstance: () => {
return {
interactions: {},
};
},
});