- cross-posted to:
- perchance
- cross-posted to:
- perchance
I have a settings popup on my generator but there is also an image layer combiner plug in, and it seems like the image is on top of the setting box when i open it, so you can’t click the bottom settings. Does anyone know how to fix this? thank you so much in advance :')



If you change this:
to this:
That should fix the popup/overlay issue.
And for the images not loading I think that’s due to this:
[mol=moles.consumableList, moles_select]sincemoles_selectis a bunch of URLs on a single line which I don’t think the image-layer-combiner-plugin supports. If you want a random number of moles then one way would be to ask an AI “Please make a javascript function calledconvertArrayOfImagesToSingleImagewhich takes an array of URLs and overlay them on a canvas so they turn them into a single layered PNG and return a PNG data URL” and then you’d use it like this or similar:[mol=moles.consumableList, convertArrayOfImagesToSingleImage(moles_select.evaluateItem.split(" "))]Edit: Actually tell the AI to implement
convertArrayOfImagesToSingleImageby embedding the PNGs inside an SVG and return the data URL for the SVG. That way you don’t have to deal with async stuff. Something like this might work:Thank you so much!