Skip to content

Commit

Permalink
d
Browse files Browse the repository at this point in the history
  • Loading branch information
andire120 committed Jan 7, 2025
1 parent 30d42fc commit 23d4364
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 10 deletions.
15 changes: 9 additions & 6 deletions src/routes/make_sheet2/(my-app)/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
// @ts-nocheck
import { page } from '$app/stores';
import { onMount } from 'svelte';
const ASSETS_PREFIX = '/src/public/element/otherthing/otherelement';
import background1 from "/src/public/element/otherthing/otherelement/background.png";
import next_button from "/src/public/element/otherthing/otherelement/nextbotten.png";
import bowl from "/src/public/element/otherthing/otherelement/nodelete.png";
Expand All @@ -20,12 +23,12 @@
// 그릇 이미지 매핑
const bowlImages = {
'parkmargarine': '/src/public/element/otherthing/otherelement/bowl_powder3_maga.png',
'parkbutter': '/src/public/element/otherthing/otherelement/bowl_powder3_butter.png',
'strongbutter': '/src/public/element/otherthing/otherelement/bowl_powder1_butter.png',
'strongmargarine': '/src/public/element/otherthing/otherelement/bowl_powder1_maga.png',
'middlebutter': '/src/public/element/otherthing/otherelement/bowl_powder2_butter.png',
'middlemargarine': '/src/public/element/otherthing/otherelement/bowl_powder2_maga.png'
'parkmargarine': `${ASSETS_PREFIX}/bowl_powder3_maga.png`,
'parkbutter': `${ASSETS_PREFIX}/bowl_powder3_butter.png`,
'strongbutter': `${ASSETS_PREFIX}/bowl_powder1_butter.png`,
'strongmargarine': `${ASSETS_PREFIX}/bowl_powder1_maga.png`,
'middlebutter': `${ASSETS_PREFIX}/bowl_powder2_butter.png`,
'middlemargarine': `${ASSETS_PREFIX}/bowl_powder2_maga.png`
};
// 액체 매핑
Expand Down
10 changes: 6 additions & 4 deletions src/routes/oven/(time)/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
import { goto } from '$app/navigation';
import { page } from '$app/stores';
import { onMount } from 'svelte';
const ASSETS_PREFIX = '/src/public/element/otherthing/otherelement';
import background from "/src/public/element/otherthing/otherelement/background.png";
import next from '/src/public/element/otherthing/otherelement/nextbotten.png';
Expand All @@ -10,10 +12,10 @@
import danger from '/src/public/element/otherthing/otherelement/choseoven.png';
const ovenImages = {
'thr': '/src/public/element/otherthing/otherelement/oven1.png',
'one': '/src/public/element/otherthing/otherelement/oven2.png',
'onethr': '/src/public/element/otherthing/otherelement/oven3.png',
'eig': '/src/public/element/otherthing/otherelement/oven4.png'
'thr': `${ASSETS_PREFIX}/oven1.png`,
'one': `${ASSETS_PREFIX}/oven2.png`,
'onethr': `${ASSETS_PREFIX}/oven3.png`,
'eig': `${ASSETS_PREFIX}/oven4.png`
};
const timeMapping = {
Expand Down

0 comments on commit 23d4364

Please sign in to comment.