Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

This is a great game, small but cohesive and everything tied up neatly.

I think i have the feeling like the game slows down when the black hole turns big. I’m guessing this is normal, because the camera moves away and of course things will move “slower” from afar, but when starting again from the smaller scale then i have the sensation of things moving faster.  But this is a very minor problem, and possibly only for me.

I like when games have this comic-like dialogs inside the narrative :)

Thanks for your feedback ! :)

I believe there's an impact on game performances when we scale up the player too much. Perhaps every calculation begins to be more intensive on the engine due to high coordinates, large numbers, etc.
Also, as you say, there's also the feeling that things move slower once the camera moves back / player is larger but still moves at same speed.

Actually, we even wondered if we should slow down a bit the player once it's bigger, but we quickly realized there already was a slowness feeling induced from the scaling up / dezoom.

I didn't really see it as a problem, but I understand it can be seen as one ^^


Thanks, I must say I'm starting to love adding these comic-like dialogs in our games too :)

I believe there's an impact on game performances when we scale up the player too much.

This would be my guess: for matrix images, this is a mouthful to process. I can think of two solutions:

  1. Replace this round character by vectorial graphics (I am thinking discs) and shaders (because both of these techniques are designed as faster to process);
  2. Trick: reduce everything else instead of enlarging the player. Since you used a zoom out, this would be equivalent to a viewer, I think. :)

Oh, thanks :)

Both solutions seem quite clever indeed !