mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-27 07:14:39 +02:00
twistedCubeObjet
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -74,6 +74,7 @@ import { tabletopPictureFrame } from './objects/tabletopPictureFrame.js';
|
|||||||
import { tapestry } from './objects/tapestry.js';
|
import { tapestry } from './objects/tapestry.js';
|
||||||
import { tetrapod } from './objects/tetrapod.js';
|
import { tetrapod } from './objects/tetrapod.js';
|
||||||
import { tv } from './objects/tv.js';
|
import { tv } from './objects/tv.js';
|
||||||
|
import { twistedCubeObjet } from './objects/twistedCubeObjet.js';
|
||||||
import { usedTissue } from './objects/usedTissue.js';
|
import { usedTissue } from './objects/usedTissue.js';
|
||||||
import { wallCanvas } from './objects/wallCanvas.js';
|
import { wallCanvas } from './objects/wallCanvas.js';
|
||||||
import { wallClock } from './objects/wallClock.js';
|
import { wallClock } from './objects/wallClock.js';
|
||||||
@@ -153,6 +154,7 @@ export const OBJECT_DEFS = [
|
|||||||
tapestry,
|
tapestry,
|
||||||
tetrapod,
|
tetrapod,
|
||||||
tv,
|
tv,
|
||||||
|
twistedCubeObjet,
|
||||||
usedTissue,
|
usedTissue,
|
||||||
wallCanvas,
|
wallCanvas,
|
||||||
wallClock,
|
wallClock,
|
||||||
|
|||||||
@@ -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: {},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
});
|
||||||
Reference in New Issue
Block a user