1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-19 18:15:47 +02:00
Files
misskey/packages/frontend/src/world/room/objects/tableSalt.ts
2026-04-22 21:07:33 +09:00

25 lines
432 B
TypeScript

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