mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-06-25 17:10:43 +00:00
🍮
This commit is contained in:
parent
bf72fb0d9a
commit
6fe0e97ac6
6 changed files with 23 additions and 0 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -21,6 +21,7 @@ import { chair } from './objects/chair.js';
|
|||
import { coffeeCup } from './objects/coffeeCup.js';
|
||||
import { colorBox } from './objects/colorBox.js';
|
||||
import { cupNoodle } from './objects/cupNoodle.js';
|
||||
import { custardPudding } from './objects/custardPudding.js';
|
||||
import { debugHipoly } from './objects/debugHipoly.js';
|
||||
import { desk } from './objects/desk.js';
|
||||
import { desktopPc } from './objects/desktopPc.js';
|
||||
|
|
@ -91,6 +92,7 @@ export const OBJECT_DEFS = [
|
|||
coffeeCup,
|
||||
colorBox,
|
||||
cupNoodle,
|
||||
custardPudding,
|
||||
desk,
|
||||
desktopPc,
|
||||
ductTape,
|
||||
|
|
|
|||
21
packages/frontend/src/utility/room/objects/custardPudding.ts
Normal file
21
packages/frontend/src/utility/room/objects/custardPudding.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 custardPudding = defineObject({
|
||||
id: 'custardPudding',
|
||||
name: 'custardPudding',
|
||||
options: {
|
||||
schema: {},
|
||||
default: {},
|
||||
},
|
||||
placement: 'top',
|
||||
createInstance: () => {
|
||||
return {
|
||||
interactions: {},
|
||||
};
|
||||
},
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue