This commit is contained in:
syuilo
2026-02-15 15:46:09 +09:00
parent 9ecb3d6a5a
commit e70743bf40
6 changed files with 14 additions and 1 deletions

Binary file not shown.

View File

@@ -100,7 +100,7 @@ onMounted(() => {
}, {
id: 'f3',
type: 'snakeplant',
position: [-25, 90, 170],
position: [40, 90, 170],
rotation: [0, 0, 0],
}, {
id: 'g',
@@ -211,6 +211,16 @@ onMounted(() => {
type: 'round-rug',
position: [0, 0, 0],
rotation: [0, 0, 0],
}, {
id: 'x',
type: 'blind',
position: [-35, 194, 185],
rotation: [0, Math.PI, 0],
}, {
id: 'x2',
type: 'blind',
position: [35, 194, 185],
rotation: [0, Math.PI, 0],
}],
}, {
canvas: canvas.value!,

View File

@@ -311,6 +311,9 @@ const OBJECTS = {
'snakeplant': {
placement: 'top',
},
'blind': {
placement: 'bottom',
},
} as Record<string, ObjectDef>;
const _assumedFramesPerSecond = 60;