Kevin Fritz

Results 3 comments of Kevin Fritz

Resizing the editor didn't work. Restarting the editor doesn't work either. It seems to be permanently broken. Edit: Resizing CSG's with their handles is broken as well.

I found out what the problem was. I always set the editor to half resolution. Turning of that option fixes all the problems i had. Sorry for the unnecessary issue.

I found a way to get text files to work. You need to change this line in HTML5FileExchange.gd: [ reader.readAsArrayBuffer(file);](https://github.com/Pukkah/HTML5-File-Exchange-for-Godot/blob/aab6be4dea29c64ff76b3a4e705731c560a38be7/addons/HTML5FileExchange/HTML5FileExchange.gd#L31C4-L31C35) to reader.readAsText(file); In [input.setAttribute("accept", "image/png, image/jpeg, image/webp");](https://github.com/Pukkah/HTML5-File-Exchange-for-Godot/blob/aab6be4dea29c64ff76b3a4e705731c560a38be7/addons/HTML5FileExchange/HTML5FileExchange.gd#L22C3-L22C69) you can then...