Hi Guys, I've just reopened a script i made a while ago, however I know it was working last time I used it, it's now not working. When going through the export part of code it gives the error no ""+"" function for undefined The code is as follows:fn ExportFBX filePath createFolder ObjName =…
I'm glad you found a workaround. The original problem is a scope issue. The variable "exportFolder" exists inside the IF/ELSE statement, but not outside. So when you try to add it after the IF/ELSE there is nothing to add. It's a simple fix: fn ExportFBX filePath createFolder ObjName = ( exportFolder = filePath…
I've managed to fix this kind of. My UI had a EditText box using getSavePath to determine it's .text value, for some reason the string variable given it's value by getSavePath was clearing itself between the user choosing the file location and hitting the export button in the UI. So now I just read the .text value and set…