PlateUp!

PlateUp!

32 ratings
Kitchen Design Selector
   
Award
Favorite
Favorited
Unfavorite
Tags: Tweaks
File Size
Posted
Updated
276.669 KB
17 Apr, 2024 @ 1:44am
12 Nov, 2024 @ 9:02am
4 Change Notes ( view )

Subscribe to download
Kitchen Design Selector

Description
Provides a menu for selecting kitchen designs for: https://steamhost.cn/steamcommunity_com/sharedfiles/filedetails/?id=2901012380

Information on managing custom designs can be found here: https://github.com/OhKannaDuh/KitchenDesignManager


ThaMighty has updated the mod to fix a bug that prevented proper function on certain input devices. In addition to this the layout and path for design files has been changed.
The folder is now called `KitchenDesignSelector` rather than `KitchdenDesignManager`
And the JSON is as follows:
```
{
"Design A": "[KitchenDesigner layout string]",
"Design B": "[KitchenDesigner layout string]"
}
```

More information on this can be found at the github link above.
16 Comments
゛白昼怎懂夜的黑ヽ 28 Mar @ 3:03am 
好像有点问题,加载地图后,不能看放大后的地图,同时上面显示了一个设置种子码。虽然不影响使用,但不方便切换地图,因为看不了放大后的
Faye  [author] 12 Nov, 2024 @ 9:04am 
Should be working now
ThaMighty  [author] 12 Nov, 2024 @ 8:03am 
Hey @Faye, I think you uploaded the wrong version to the Workshop. It still uses the old folder and also the old Menu Bug is in it.
ThaMighty  [author] 8 Nov, 2024 @ 12:33am 
@Faye, Hey I made a pull request on github to fix the bug but I changed some stuff around. I dropped the Entry Class and used dictionaries to eliminate duplicate entries. This also means that the layout of the json files changed to { "Name":"DesignCode","Name2":"DesignCode2" } instead of [{...}]
Faye  [author] 28 Oct, 2024 @ 5:22pm 
I'd have to look into these issues when I have time. Honestly I've not played Plate Up in months so can't say when I'll get to it. If anybody wants to take a look in the mean time, source code link is in the description.
ThaMighty  [author] 26 Oct, 2024 @ 1:16pm 
Mod is currently not working...once install you cant open the esc/options menu anymore
PinkChevelle 10 Sep, 2024 @ 11:47am 
I added this today and it made it so that the esc button would not bring up the menu :(
Digglebert 10 Aug, 2024 @ 5:08pm 
While you can fix kitchen designer after this patch by using a controller, this seems to also break that menu as Esc or Options on PS5 controller also doesn't work.
Faye  [author] 27 Jun, 2024 @ 2:03pm 
Sorry about the formatting, Steam hates me
Faye  [author] 27 Jun, 2024 @ 2:02pm 
So let's go step by step.

Inside that folder you'll want to make a JSON file, let's call it MyDesigns.json.

Inside that file you'll want to start by creating a JSON array, so just some empty square brackets:
```
[

]
```
Inside those brackets you can start adding your designs, which will be a JSON object with the label and design properties:
```
[
{
"label": "label",
"design": "design"
}
]
```
Label will be the title that shows up when selecting your design and design will be the kitchen design string.
You can add more designs by adding extra JSON objects, separated by a comma:
```
[
{
"label": "label",
"design": "design"
},
{
"label": "label 2",
"design": "design 2"
},
{
"label": "label 3",
"design": "design 3"
}
]
```
Let me know if you need anything more, I was never great at explaining things