1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-23 06:24:15 +02:00

twistedCubeObjet

This commit is contained in:
syuilo
2026-04-12 17:56:01 +09:00
parent 7d5c2052eb
commit 2685e254f1
4 changed files with 23 additions and 0 deletions

View File

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