mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-22 04:35:31 +02:00
25 lines
447 B
TypeScript
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: {},
|
|
};
|
|
},
|
|
});
|