This commit is contained in:
syuilo
2026-03-01 21:57:53 +09:00
parent 545009078a
commit 36438e85d1
6 changed files with 23 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

View File

@@ -24,6 +24,7 @@ import { ductTape } from './objects/ductTape.js';
import { emptyBento } from './objects/emptyBento.js';
import { energyDrink } from './objects/energyDrink.js';
import { facialTissue } from './objects/facialTissue.js';
import { hangingTShirt } from './objects/hangingTShirt.js';
import { keyboard } from './objects/keyboard.js';
import { lavaLamp } from './objects/lavaLamp.js';
import { letterCase } from './objects/letterCase.js';
@@ -75,6 +76,7 @@ export const OBJECT_DEFS = [
emptyBento,
energyDrink,
facialTissue,
hangingTShirt,
keyboard,
lavaLamp,
letterCase,

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 hangingTShirt = defineObject({
id: 'hangingTShirt',
name: 'Hanging T-Shirt',
options: {
schema: {},
default: {},
},
placement: 'side',
createInstance: () => {
return {
interactions: {},
};
},
});