Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

well the clickable menu's just dont load at all
the buttons still exist and can be clicked but they are completely invisible
when I click what is meant to be the play button I assume the screen just goes pitch black

most likely a GPU issue (doesn't support vulkan rendering engine)

Create a shortcut and then add --rendering-driver opengl3 to the target in shortcut's property and launch the game via this shortcut, might fix the issue

here's a tutorial on how to run godot games with opengl3 mode. the person in this video showcases how to run godot itself, but it can be applied to innventure.exe in the same way

(+1)

ok yeah that worked
it was just confusing since the other versions didn't have this issue at all?
did you decide to just use vulkan here?

Previous versions were made with an older version of the engine that utilized OpenGL. When I updated the game to godot 4 I kinda didn't notice it's now running on vulkan, and later on switching it back to OpenGL did break some things I already implemented in the game, so I decided to just stick with it... unfortunately vulkan is completely unoptimized for older hardware, which is why I'll never use it again, especially since 2d games don't really need fancy rendering engines like that...