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

24 lines
408 B
TypeScript

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