Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Still got json parse problem. 
I fixed it by changing this line 

const pic_names = JSON.parse(data['Pictures'] || []);

into this

const pic_names = data['Pictures'] || [];

The plugin is trying to JSON.parse the image files, thus it gives error. Because its looking for a string, while we pick the pictures with drop down menu in plugin parameters.

I encountered this problem while adding images to options.

Got it, thanks, fortunately once updated, this issue goes away when I release the master editor compatible version

Synrec, thanks for the answer, I don't want to pressure you for anything but I would like to know when the next update is.
I bought your Star Shooter plugin too (for MZ), and with this Menu Builder I was trying to make a ship menu for my game. Variables that I put inside Basic Window are not updating, Party Gold inside Basic Window is not updating, thus I cannot make a custom Spaceship Parts Store. Same goes for the buttons, as they are only under Options parameter, I cannot put them in a different window, even if I were to bring them on a different window, by using X,Y coordinates, I cannot use more then 1 button, which does the same thing as clicking on the option itself. I need this for Spaceship Upgrade Menu, I'm trying to present player Spaceship Stats (variables updating by frame) to player, thus player can spend avaliable points on ATK DEF HP and EP in your Star Shooter plugin. 
I have limited time, if the update is not soon I will have to look for a new way to implement all of this. 

Over this weekend most likely, just finishing up some stuff with the Master Editor software for stability