Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Reporting Bugs?

A topic by TN97 created Sep 22, 2022 Views: 419 Replies: 8
Viewing posts 1 to 3

What's the best way to report bugs?

(+1)

You can report them here. I am the lead developer and I routinely check this thread

(+1)

Hello! I'd like to know the paths to all the files the game and all its previous version used in order to do a clean install. I find an insane ammount of bugs, so much so that I can't imagine it's normal and that there has some corrupt files or compatibility issues between versions. I'm not sure gonna be able to list all the bugs, though, but if this fails then I will to help out.

All the files should exist in the zip or .rar files that are uploaded to itchio

(1 edit)

What about data files, where the setting values are stored, like keybindings, as well as the place where it saves the fact that I've entered the password. Even when I delete everthing there are some information that are maintained, leading me to believe there has to be some cache of data somewhere... I checked roaming, appdata and MyGames and there are BBS files there, but deleting them doesn't reset the settings, so it has to be elsewhere.

Ahh good question. If you know anything about Unity we are using the PlayerPrefs to save settings ect which are stored in the registry files on windows. You can reference the below article to find where the keys are being stored.

SOLVED: Where is Unity’s PlayerPrefs stored on Windows? | by Spobwoode | Medium

(+1)

I’m having problems with wall jumping not working (at least for jade), double jump sometimes doesn’t work (second bump doesn’t make you jump any higher), sometimes player freezes after attack, sometimes player is no longer able to attack (only walk and jump). Problems are so frequent it’s somewhat difficult to beat even one level without having to restart due to bugs :c

The way Jade works is entirely different than the other characters. Unlike Vergence and Genesis she actually crawls up the wall. To engage you need to Jump into the wall while pressing the shift key and it should cause her cling to wall behaviour to trigger.

Developer

Hi Lapsio!

Double jump and attacks failing we discovered was relative to the frame rate. Enemies now unload from the render pipeline when off-screen, and their scripts have less calls per second. This lead to a substantial improvement in response time for player actions on the debug stage.

Normal stages still eat some memory, we plan to unload chunks of that as well.