Hi,
thanks for this tool - So far i struggled around and i got it now, its straight forward.
But, i have issues at the Horizontal/Vertical List - There is no error, but its not showing up, the referenced button is not visible in the game then, but also i dont see any list. I also tried to decrease the opacity of the panel, no success.
I've also tried with buttons, but i think its not supposed to use a button and add there the buttons, since its also missing in the code.
Could you quickly show me how to do a list correctly, please? This (the list) was the initial buy reason for me
Just a quick information (Syntax Error, improvement for next version): When exporting a Panel which contains a Button List, the export code is using a float for "maxx" and "miny", but isntead of using a dot (.) its using a comma (,) + variable used in iteration which doesn't exist.
> See here: float maxx = -130,6171f; float miny = 109,4894f; (I just changed it to a dot)
+
> See here (directly under the maxx, miny declaration):
for (int i = 0; i < option.Count; i++) {
if (i != 0) {
miny -= 0f;
"option" isn't defined, so we couldn't iterate through the loop. I'm not sure if we are supposed to create it, buts its an improvement for the next version for sure