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

24 lines
401 B
TypeScript

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