1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-22 04:35:31 +02:00
Files
misskey/packages/frontend/src/world/room/objects/hangingTShirt.ts
syuilo 6cca5706f7 wip
2026-04-17 15:31:56 +09:00

25 lines
447 B
TypeScript

/*
* SPDX-FileCopyrightText: syuilo and misskey-project
* SPDX-License-Identifier: AGPL-3.0-only
*/
import { defineObject } from '../object.js';
export const hangingTShirt = defineObject({
id: 'hangingTShirt',
name: 'Hanging T-Shirt',
options: {
schema: {},
default: {},
},
placement: 'side',
hasCollisions: false,
hasTexture: true,
canPreMeshesMerging: true,
createInstance: () => {
return {
interactions: {},
};
},
});