Godot 4
Hello, have you thought about migrating this to Godot 4 given (I don't think) Godot 4 supports integer scaling.
I tried to convert it myself, but the documentation is somewhat lacking and everything has moved between SceneTree, SubViewPort, Viewport, DisplayServer, etc that I got dizzy and gave up.
The main 2 changes were:
- _root was changed from
SubViewporttoWindow(I'm 90% sure it was a SubViewport earlier) - A lot of the functions and constants from
SceneTreewere moved toWindow, meaning they now sit on _root
I've made a bit of progress, but I'm stuck at actually applying the settings the script is overriding
Thanks. I tried but got stuck on the black bar method calls as they don't exist.
You'd have thought they would have added integer scaling by now, given in 4 they've added extra pixel scaling to cameras, etc.
Has anyone had success porting this to Godot 4? I found this but it's a little more cumbersome to use since it requires a very specific (sub)viewport setup.