Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(+1)

If you lined up all my fish end-to-end they would reach from here to the Moon, if the Moon was 20.23 meters away.

Using Down to acknowledge the dialogue box is kind of annoying, because you dismiss it and then can’t help taking a step downward. Couldn’t that be O or X instead?

(1 edit)

Yeah, it would be better but, if its O it will throw the fishing rod instantly, and if it's X if will close the dialogue box instantly because you also use X to catch the fish. So I sadly had to use down. But maybe i can use a timer to make the window closable with X

(+1)

Oh gotcha, that makes sense.

I run into that problem sometimes, and use a manual input blackout. Not sure how applicable that is for your case, but the general logic is like:

update(int state) {
  if (blackout) {
    if (!state) blackout = false;
  } else {
    ...poll state etc etc...
  }
}

Then when there’s a modal change, I set blackout nonzero and it will stop processing new input until the input state goes clear again.

(+1)

Thanks ! But I managed to get arround the problem with the timer i talked about, now the window won't be able to close for less than 0.5 seconds. (It gives at least the time to see the fish you got)