Skip to main content

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

Is there any news on this getting patched for quest 2? I get flashing/glitching objects. Got excited when someone said it was working on quest 2 on sidequest but I reinstalled and still no luck.

Right now I am preparing a build candidate to test it. Uploading it today.

The bug was fixed a few days ago but I wanted to push a few other things and because of that I found a few other bugs that were fixed too.

thanks for replying! I never played it on my first quest and even with graphics not working I am blown away by what you have done with the game. Can't wait to play it without the glitching!

The build with a fix is available :)

Out of interest, what was causing the glitching with the graphics? It was a really weird effect.

I was naively assuming that every graphic card and driver is faithful to opengl ES specificiations. Adreno 650 isn't. It does not allow for indexing of matrices 4x4 (mat4) arrays by variable. Workaround is to use array of vectors 4 (vec4) and building matrices out of them. There were also a few other minor things related to that. There are some good reasons for that I suppose and it's not a big deal but makes you remember to always check things on actual hardware.