1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-14 00:35:52 +02:00
This commit is contained in:
syuilo
2026-04-09 15:43:45 +09:00
parent bf72fb0d9a
commit 6fe0e97ac6
6 changed files with 23 additions and 0 deletions

View File

@@ -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,

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 custardPudding = defineObject({
id: 'custardPudding',
name: 'custardPudding',
options: {
schema: {},
default: {},
},
placement: 'top',
createInstance: () => {
return {
interactions: {},
};
},
});