mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-03-21 03:30:42 +00:00
wip
This commit is contained in:
Binary file not shown.
Binary file not shown.
BIN
packages/frontend/assets/room/objects/hanging-t-shirt/ilovemi.af
Normal file
BIN
packages/frontend/assets/room/objects/hanging-t-shirt/ilovemi.af
Normal file
Binary file not shown.
Binary file not shown.
|
After Width: | Height: | Size: 7.8 KiB |
@@ -24,6 +24,7 @@ import { ductTape } from './objects/ductTape.js';
|
||||
import { emptyBento } from './objects/emptyBento.js';
|
||||
import { energyDrink } from './objects/energyDrink.js';
|
||||
import { facialTissue } from './objects/facialTissue.js';
|
||||
import { hangingTShirt } from './objects/hangingTShirt.js';
|
||||
import { keyboard } from './objects/keyboard.js';
|
||||
import { lavaLamp } from './objects/lavaLamp.js';
|
||||
import { letterCase } from './objects/letterCase.js';
|
||||
@@ -75,6 +76,7 @@ export const OBJECT_DEFS = [
|
||||
emptyBento,
|
||||
energyDrink,
|
||||
facialTissue,
|
||||
hangingTShirt,
|
||||
keyboard,
|
||||
lavaLamp,
|
||||
letterCase,
|
||||
|
||||
21
packages/frontend/src/utility/room/objects/hangingTShirt.ts
Normal file
21
packages/frontend/src/utility/room/objects/hangingTShirt.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 hangingTShirt = defineObject({
|
||||
id: 'hangingTShirt',
|
||||
name: 'Hanging T-Shirt',
|
||||
options: {
|
||||
schema: {},
|
||||
default: {},
|
||||
},
|
||||
placement: 'side',
|
||||
createInstance: () => {
|
||||
return {
|
||||
interactions: {},
|
||||
};
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user