Skip to main content

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

Happy Adventures at House HemelsView game page

Help Elliot to make peace with her past at House Hemels - or to re-awaken it
Submitted by Lenyril Tales
Add to collection

Play game

Happy Adventures at House Hemels's itch.io page

Results

CriteriaRankScore*Raw Score
Audio#3412.1173.667
Graphics#3602.3094.000
Innovation#4111.7323.000
Overall#4421.7323.000
Theme interpretation#4491.7323.000
Gameplay#4521.5402.667

Ranked from 3 ratings. Score is adjusted from raw score by the median number of ratings per game in the jam.

GitHub repository
https://github.com/Sabbadoef/House-hemels

Leave a comment

Log in with itch.io to leave a comment.

Comments

Submitted

Movement is a bit hard to control, but it had a really nice atmosphere to it. I got a bit lost on where to go on a few places, could not figure out the wall jump :(

Developer(+1)

Thank you for playing and for giving us feedback! 
Unfortunately, it looks like on some computers the movements react differently than on others (or, rather, so far movements seem to act as intended only on the pc on which it was developed). We are working on solving the bug, and we’ll update the game after the jam is over.

Submitted(+2)

First of all - if anyone is reading comments and thinking this game won't run, it ran perfectly fine for me. I extracted and ran the app as normal. 

The art is gorgeous in this! Well done. I like exploring and learning more backstory as I go. I love the creepy vibes!

Developer

Thank you! It's great that you played it and enjoyed it, and thanks for the kind words -and I'm happy to hear that it ran smoothly for you :)

Submitted (4 edits) (+2)

Wow, this game is really cool.

- Artstyle, character design, environments and animations were super cool honestly really well done and creative all around! (even though there's some janky things you need to iron out, clipping sprites and positioning of idle vs walk on the main character).

- Music and overall sounds were very impressive and in the theme.

- Story was nice, lots of dark litterary vibes.

- Level Design was good, quite a bit harder than I initially expected. I felt the whole thing with the story pages always revealing a new gameplay ability was really well done.
One thing I should say is that the spikes were very hard to see, I died way too many times to spikes I had no idea were there, not sure if that was intended or not. Also I got my way around easily enough, never got lost for too long but there were times I asked myself what was the intended path forward, the little collectible fire things were good but I think you could improve a little on suggesting the next path forward.

-Gameplay was a little rough around the edges, it worked fine but I think you could still improve it a little bit, making it less choppy and more fluid and predictable, for me the wall jumps were fiddly and hard to follow through. I liked the torch mechanic and expected it to be more relevant, I think you could still think of other uses for it outside of just colleting the memories (maybe if you flash the enemies they get stunned for a second or something like that).

All in all, I'm very impressed, really good game and quite complete, when I finished it I was left wanting even more!

Developer

Hi! Thank you for playing, for the kind words, and for taking the time to give me detailed feedback! I really appreciate it. It was the first game for all of us,  so every suggestion and comment helps  - visibility, spotlight mechanics, redirection and wall jumps will certainly see some work after the Jam closes :)

For the torch mechanic you are "ehm" spot on: originally I was thinking of adding a fear counter and tying the torchlight to it and to threats in more or less the way you suggest -illuminating a threats deactivates it for a few seconds;  the cost would then be that of increased fear, and hitting max fear would lead to a different ending. However, I barely managed to fit in the deadline like this ^^`

As for the gameplay fluidity, did you by chance also experience absurdly high, floaty jumps? On the computer I developed the game it runs pretty smoothly and the jumps are relatively short and fast, so that there really is only one path possible at all times; however, I tried it on my laptop and the jumps were exaggerated and felt like there was very low gravity, making most moves harder but allowing one to jump through sections in the wrong order.  I had similar inconsistencies also while running the game in the editor. If this is what you experienced, would you perhaps also know where could lie the origin of this issue?

Cheers!

Submitted

well I'm not sure how high you intended the jump to be but I would say mine were pretty strong, I can maybe later make a quick clip for you to check if that's what it is, either that or I download the project directly from git and take a look at things.

How did you code the jump? Is it a force being added, a velocity? Are you doing it in the update method or fixedUpdate() ?

Developer

Then my guess is that the movements are indeed not running as they should, so I'm afraid that that might have added extra discomfort to the playing experience. I couldn't replicate the issue consistently enough to pinpoint the cause, but there's also a lot that I still have to learn...

I coded all movements (including jumps and wall jumps) as changes in velocities, which take place in the Update() method, and not scaled by Time.deltaTime (which occasionally popped by online as a solution, but is supposedly incorrect when dealing with body.velocity).

In case you did happen to check the code on git, all movements of the player are in the  Controller_V2 class.

In any case, thank you for your time! It's great to find so much support!

Submitted(+1)

Ok, I went to your git repo, but since you don't have the whole project there I can't exactly download and try it out on my own, but my advise to you would be to put a "Debug.log()" inside your Jump() method and then go back to the editor and try to jump a few times and check if that call is not triggering more than once, that would be my first guess. If so, you could make a global bool "canJump" and in place of calling Jump() in the update method you would set that bool to true, and then in the FixedUpdate() you would say if(canJump){ Jump(); }

I'm not sure if that solves it, but you could try it.

Developer

thanks for the suggestions! I’m once more out of town, but I’ll try as soon as I get back -would be nice if it worked, and it does sound like a very sensible hypothesis :)

Submitted(+1)

Hey I tried downloading it too but it wont run as this is only an .exe file.

When you get back, make a .zip file of all the files / folders Unity exported when you built the game and upload that zip file so people can play it ;)

Hope it goes well for you!

Developer(+1)

Hi!

Thank you for stopping by, and for taking the time to help me out! I should've included everything necessary now, and was able to run the game from a different computer :)

If you have the time, I'd ask you to try again and let me know if it doesn't run. If it does and you end up playing it, I'd of course be happy to also hear what you think about it.

All the best,
Albe

Submitted(+1)

The game fails to run:

$ wine JAM2022_GameOff.exe 
002c:err:module:import_dll Library UnityPlayer.dll (which is needed by L"Z:\\home\\quasilyte\\Downloads\\JAM2022_GameOff.exe") not found
002c:err:module:LdrInitializeThunk Importing dlls for L"Z:\\home\\quasilyte\\Downloads\\JAM2022_GameOff.exe" failed, status c0000135

It looks like it misses the UnityPlayer.dll in its distribution. Consider adding all necessary files to a zip archive and upload that instead. The player would download that archive, place them on their machine and run the game from that folder.

Let me know if you have any difficulties.

Developer

Thanks for the message! It’s the first time I use unity (or any game engine), and I hadn’t realized that more than the .exe was necessary to run the game…

I’m out of town, but I’ll be able to upload all necessary files tomorrow (in 30h or so).

Albe

Developer

Hi! Thank you again for your message and the instructions, the problem should be solved now: the .zip should contain everything that's need, and I was able to run the game from a different computer.

If you don't mind, I'd ask you to let me know if that's still not the case -and if, instead, the game runs, I'd be happy to hear your thoughts!

All the best,
Albe