This commit is contained in:
syuilo
2026-02-17 11:56:52 +09:00
parent 8bd2003a38
commit 3717962757
5 changed files with 26 additions and 0 deletions

View File

@@ -254,6 +254,13 @@ onMounted(() => {
rotation: [0, Math.PI / 2, 0],
sticky: 'j',
options: {},
}, {
id: 'j3',
type: 'letterCase',
position: [130, 59, 125],
rotation: [0, Math.PI / 2, 0],
sticky: 'j',
options: {},
}, {
id: 'j3',
type: 'powerStrip',

View File

@@ -20,6 +20,7 @@ import { energyDrink } from './objects/energyDrink.js';
import { facialTissue } from './objects/facialTissue.js';
import { keyboard } from './objects/keyboard.js';
import { lavaLamp } from './objects/lavaLamp.js';
import { letterCase } from './objects/letterCase.js';
import { milk } from './objects/milk.js';
import { monitor } from './objects/monitor.js';
import { monstera } from './objects/monstera.js';
@@ -54,6 +55,7 @@ export const OBJECT_DEFS = [
facialTissue,
keyboard,
lavaLamp,
letterCase,
milk,
monitor,
monstera,

View File

@@ -0,0 +1,17 @@
/*
* SPDX-FileCopyrightText: syuilo and misskey-project
* SPDX-License-Identifier: AGPL-3.0-only
*/
import { defineObject } from '../engine.js';
export const letterCase = defineObject({
id: 'letterCase',
defaultOptions: {},
placement: 'top',
createInstance: () => {
return {
interactions: {},
};
},
});