mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-22 23:24:10 +02:00
used-tissue
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -70,6 +70,7 @@ import { tabletopPictureFrame } from './objects/tabletopPictureFrame.js';
|
|||||||
import { tapestry } from './objects/tapestry.js';
|
import { tapestry } from './objects/tapestry.js';
|
||||||
import { tetrapod } from './objects/tetrapod.js';
|
import { tetrapod } from './objects/tetrapod.js';
|
||||||
import { tv } from './objects/tv.js';
|
import { tv } from './objects/tv.js';
|
||||||
|
import { usedTissue } from './objects/usedTissue.js';
|
||||||
import { wallCanvas } from './objects/wallCanvas.js';
|
import { wallCanvas } from './objects/wallCanvas.js';
|
||||||
import { wallClock } from './objects/wallClock.js';
|
import { wallClock } from './objects/wallClock.js';
|
||||||
import { wallMirror } from './objects/wallMirror.js';
|
import { wallMirror } from './objects/wallMirror.js';
|
||||||
@@ -144,6 +145,7 @@ export const OBJECT_DEFS = [
|
|||||||
tapestry,
|
tapestry,
|
||||||
tetrapod,
|
tetrapod,
|
||||||
tv,
|
tv,
|
||||||
|
usedTissue,
|
||||||
wallCanvas,
|
wallCanvas,
|
||||||
wallClock,
|
wallClock,
|
||||||
wallMirror,
|
wallMirror,
|
||||||
|
|||||||
21
packages/frontend/src/utility/room/objects/usedTissue.ts
Normal file
21
packages/frontend/src/utility/room/objects/usedTissue.ts
Normal 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 usedTissue = defineObject({
|
||||||
|
id: 'usedTissue',
|
||||||
|
name: 'usedTissue',
|
||||||
|
options: {
|
||||||
|
schema: {},
|
||||||
|
default: {},
|
||||||
|
},
|
||||||
|
placement: 'top',
|
||||||
|
createInstance: () => {
|
||||||
|
return {
|
||||||
|
interactions: {},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
});
|
||||||
Reference in New Issue
Block a user