mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-25 09:44:11 +02:00
wip
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -31,6 +31,7 @@ import { pachira } from './objects/pachira.js';
|
|||||||
import { plant } from './objects/plant.js';
|
import { plant } from './objects/plant.js';
|
||||||
import { plant2 } from './objects/plant2.js';
|
import { plant2 } from './objects/plant2.js';
|
||||||
import { powerStrip } from './objects/powerStrip.js';
|
import { powerStrip } from './objects/powerStrip.js';
|
||||||
|
import { rolledUpPoster } from './objects/rolledUpPoster.js';
|
||||||
import { roundRug } from './objects/roundRug.js';
|
import { roundRug } from './objects/roundRug.js';
|
||||||
import { snakeplant } from './objects/snakeplant.js';
|
import { snakeplant } from './objects/snakeplant.js';
|
||||||
import { steelRack } from './objects/steelRack.js';
|
import { steelRack } from './objects/steelRack.js';
|
||||||
@@ -69,6 +70,7 @@ export const OBJECT_DEFS = [
|
|||||||
plant,
|
plant,
|
||||||
plant2,
|
plant2,
|
||||||
powerStrip,
|
powerStrip,
|
||||||
|
rolledUpPoster,
|
||||||
roundRug,
|
roundRug,
|
||||||
snakeplant,
|
snakeplant,
|
||||||
steelRack,
|
steelRack,
|
||||||
|
|||||||
17
packages/frontend/src/utility/room/objects/rolledUpPoster.ts
Normal file
17
packages/frontend/src/utility/room/objects/rolledUpPoster.ts
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
/*
|
||||||
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
||||||
|
* SPDX-License-Identifier: AGPL-3.0-only
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { defineObject } from '../engine.js';
|
||||||
|
|
||||||
|
export const rolledUpPoster = defineObject({
|
||||||
|
id: 'rolledUpPoster',
|
||||||
|
defaultOptions: {},
|
||||||
|
placement: 'top',
|
||||||
|
createInstance: () => {
|
||||||
|
return {
|
||||||
|
interactions: {},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
});
|
||||||
Reference in New Issue
Block a user