mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-06-25 17:10:43 +00:00
wip
This commit is contained in:
parent
295c91c245
commit
7ff95b8f8a
4 changed files with 23 additions and 0 deletions
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: {},
|
||||
};
|
||||
},
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue