mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-13 22:15:41 +02:00
glassCylinderPotPlant
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 29 KiB |
Binary file not shown.
Binary file not shown.
@@ -34,6 +34,7 @@ import { emptyBento } from './objects/emptyBento.js';
|
|||||||
import { energyDrink } from './objects/energyDrink.js';
|
import { energyDrink } from './objects/energyDrink.js';
|
||||||
import { envelope } from './objects/envelope.js';
|
import { envelope } from './objects/envelope.js';
|
||||||
import { facialTissue } from './objects/facialTissue.js';
|
import { facialTissue } from './objects/facialTissue.js';
|
||||||
|
import { glassCylinderPotPlant } from './objects/glassCylinderPotPlant.js';
|
||||||
import { hangingTShirt } from './objects/hangingTShirt.js';
|
import { hangingTShirt } from './objects/hangingTShirt.js';
|
||||||
import { icosahedron } from './objects/icosahedron.js';
|
import { icosahedron } from './objects/icosahedron.js';
|
||||||
import { ironFrameShelf5, ironFrameShelf4, ironFrameShelf3 } from './objects/ironFrameShelf.js';
|
import { ironFrameShelf5, ironFrameShelf4, ironFrameShelf3 } from './objects/ironFrameShelf.js';
|
||||||
@@ -124,6 +125,7 @@ export const OBJECT_DEFS = [
|
|||||||
energyDrink,
|
energyDrink,
|
||||||
envelope,
|
envelope,
|
||||||
facialTissue,
|
facialTissue,
|
||||||
|
glassCylinderPotPlant,
|
||||||
hangingTShirt,
|
hangingTShirt,
|
||||||
icosahedron,
|
icosahedron,
|
||||||
ironFrameShelf5,
|
ironFrameShelf5,
|
||||||
|
|||||||
@@ -0,0 +1,24 @@
|
|||||||
|
/*
|
||||||
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
||||||
|
* SPDX-License-Identifier: AGPL-3.0-only
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { defineObject } from '../object.js';
|
||||||
|
|
||||||
|
export const glassCylinderPotPlant = defineObject({
|
||||||
|
id: 'glassCylinderPotPlant',
|
||||||
|
name: 'glassCylinderPotPlant',
|
||||||
|
options: {
|
||||||
|
schema: {},
|
||||||
|
default: {},
|
||||||
|
},
|
||||||
|
placement: 'top',
|
||||||
|
hasCollisions: false,
|
||||||
|
hasTexture: true,
|
||||||
|
canPreMeshesMerging: true,
|
||||||
|
createInstance: () => {
|
||||||
|
return {
|
||||||
|
interactions: {},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
});
|
||||||
Reference in New Issue
Block a user