1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-22 01:05:40 +02:00

stormGlass

This commit is contained in:
syuilo
2026-04-21 16:30:42 +09:00
parent 64995bebc5
commit da8945dc23
4 changed files with 26 additions and 0 deletions

View File

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