mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-03-21 03:30:42 +00:00
wip
This commit is contained in:
BIN
packages/frontend/assets/room/objects/tetrapod/tetrapod.blend
Normal file
BIN
packages/frontend/assets/room/objects/tetrapod/tetrapod.blend
Normal file
Binary file not shown.
BIN
packages/frontend/assets/room/objects/tetrapod/tetrapod.glb
Normal file
BIN
packages/frontend/assets/room/objects/tetrapod/tetrapod.glb
Normal file
Binary file not shown.
@@ -55,6 +55,7 @@ import { tabletopCalendar } from './objects/tabletopCalendar.js';
|
||||
import { tabletopDigitalClock } from './objects/tabletopDigitalClock.js';
|
||||
import { tabletopPictureFrame } from './objects/tabletopPictureFrame.js';
|
||||
import { tapestry } from './objects/tapestry.js';
|
||||
import { tetrapod } from './objects/tetrapod.js';
|
||||
import { tv } from './objects/tv.js';
|
||||
import { wallClock } from './objects/wallClock.js';
|
||||
import { wallShelf } from './objects/wallShelf.js';
|
||||
@@ -113,6 +114,7 @@ export const OBJECT_DEFS = [
|
||||
tabletopDigitalClock,
|
||||
tabletopPictureFrame,
|
||||
tapestry,
|
||||
tetrapod,
|
||||
tv,
|
||||
wallClock,
|
||||
wallShelf,
|
||||
|
||||
21
packages/frontend/src/utility/room/objects/tetrapod.ts
Normal file
21
packages/frontend/src/utility/room/objects/tetrapod.ts
Normal 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 tetrapod = defineObject({
|
||||
id: 'tetrapod',
|
||||
name: '波消ブロック',
|
||||
options: {
|
||||
schema: {},
|
||||
default: {},
|
||||
},
|
||||
placement: 'top',
|
||||
createInstance: () => {
|
||||
return {
|
||||
interactions: {},
|
||||
};
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user