This commit is contained in:
syuilo
2026-02-15 14:14:44 +09:00
parent 9f0fbb8531
commit 9ecb3d6a5a
8 changed files with 20 additions and 3 deletions

View File

@@ -69,7 +69,7 @@ onMounted(() => {
id: 'c',
type: 'desk',
position: [-115, 0, 85],
rotation: [0, 0, 0],
rotation: [0, Math.PI, 0],
}, {
id: 'd',
type: 'monitor',
@@ -80,7 +80,7 @@ onMounted(() => {
id: 'd2',
type: 'keyboard',
position: [-110, 70, 85],
rotation: [0, 0, 0],
rotation: [0, Math.PI, 0],
sticky: 'c',
}, {
id: 'e',
@@ -97,6 +97,11 @@ onMounted(() => {
type: 'monstera',
position: [-55, 90, 175],
rotation: [0, 0, 0],
}, {
id: 'f3',
type: 'snakeplant',
position: [-25, 90, 170],
rotation: [0, 0, 0],
}, {
id: 'g',
type: 'mug',
@@ -123,6 +128,12 @@ onMounted(() => {
position: [130, 100, 115],
rotation: [0, Math.PI / 2, 0],
sticky: 'j',
}, {
id: 'j3',
type: 'power-strip',
position: [130, 13, 115],
rotation: [0, Math.PI / 2, 0],
sticky: 'j',
}, {
id: 'k',
type: 'cup-noodle',
@@ -145,7 +156,7 @@ onMounted(() => {
id: 'n',
type: 'milk',
position: [-120, 70, 130],
rotation: [0, -1.5, 0],
rotation: [0, 1.5, 0],
sticky: 'c',
}, {
id: 'o',

View File

@@ -305,6 +305,12 @@ const OBJECTS = {
'wood-sound-absorbing-panel': {
placement: 'side',
},
'power-strip': {
placement: 'top',
},
'snakeplant': {
placement: 'top',
},
} as Record<string, ObjectDef>;
const _assumedFramesPerSecond = 60;