This commit is contained in:
syuilo
2026-03-02 10:46:16 +09:00
parent 36438e85d1
commit 3f0c4b0577
9 changed files with 23 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

View File

@@ -23,6 +23,7 @@ import { desk } from './objects/desk.js';
import { ductTape } from './objects/ductTape.js';
import { emptyBento } from './objects/emptyBento.js';
import { energyDrink } from './objects/energyDrink.js';
import { envelope } from './objects/envelope.js';
import { facialTissue } from './objects/facialTissue.js';
import { hangingTShirt } from './objects/hangingTShirt.js';
import { keyboard } from './objects/keyboard.js';
@@ -75,6 +76,7 @@ export const OBJECT_DEFS = [
ductTape,
emptyBento,
energyDrink,
envelope,
facialTissue,
hangingTShirt,
keyboard,

View 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 envelope = defineObject({
id: 'envelope',
name: 'Envelope',
options: {
schema: {},
default: {},
},
placement: 'top',
createInstance: () => {
return {
interactions: {},
};
},
});