[READ-ONLY] Mirror of https://github.com/flo-bit/room. tiny 3d rooms saved locally or in your bluesky account, svelte/threlte flo-bit.dev/room/
0

Configure Feed

Select the types of activity you want to include in your feed.

fix modal bug

Florian (Mar 8, 2025, 1:26 AM +0100) 8dae9fcf e664e392

+5 -4
+3 -1
README.md
··· 28 28 - allow placing objects on other objects 29 29 - allow uploading custom models 30 30 - add shortcut to move object (-> make it placingObject) 31 - - add submenu for objects 32 31 - add modal for first visit (without handle) -> create your own room, see my room 32 + - add tutorial 33 + - resize objects in picker to perfectly fit 34 + - move back button in picker above objects (z-index)
+1 -2
src/routes/+page.svelte
··· 242 242 243 243 {#if editorState.isEditing} 244 244 <Button class="fixed bottom-4 left-4 -z-10" size="iconLg" onclick={() => { 245 - console.log('clicked', selectCategoryModalOpen); 246 245 selectCategoryModalOpen = true; 247 246 }}> 248 247 <svg ··· 824 823 </div> 825 824 </Modal> 826 825 827 - <Picker bind:selectCategoryModalOpen /> 826 + <Picker bind:selectCategoryModalOpen={selectCategoryModalOpen} />
+1 -1
src/routes/Picker.svelte
··· 65 65 } 66 66 </script> 67 67 68 - <Modal open={selectCategoryModalOpen} class="z-[100]"> 68 + <Modal bind:open={selectCategoryModalOpen} class="z-[100]"> 69 69 <Subheading class="mb-4">Add some furniture:</Subheading> 70 70 <div class="grid grid-cols-2 gap-4"> 71 71 {#each objectCategories as category, i}