Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

What an awesome little adventure game! I guess I was only halfway surprised to find that your game would involve shooting aliens with a laser gun :)

In any case, here's a more in depth review:

- First the game felt really polished. There was 0 bug, everything felt really well finished and complete, even if content wise it took me about 10 minutes to beat. The animations, dialogs, cutscenes just felt really well orchestrated. I'm assuming that somehow within the 2 weeks timeframe you were able to buffer in some time for polish. That made a huge difference. Also some nice quality of life bonuses like pathfinding around the ship made it almost feel like you had too much time :)

- The graphics were actually quite detailed, there was a lot of attention in the small details (foreground, color palette, pixel art shadows etc) and everything felt really comprehensive overall and contributed to building a sense of fear towards the creature you can only hear scream, which in retrospect, created more tension than when it became visible.

- The puzzles felt fairly basic, but this may be due to having played a lot of point and click games. I never had to think about what to do next. In hindsight, that may be a good thing for players who are just looking for a good storytelling. One thing that felt a bit backwards is that the character ends up collecting the shielding before seeing that there is a breach - aka finding the solution before finding the problem.

- Story/character wise, I really enjoyed Travis and was able to relate to his way of interacting with the world. Floyd was a great touch of humor and provided a great balance between the gory setting and a more lightweight gameplay. 

- The sfx and voice acting were top notch and really added to the gameplay. I'm actually quite curious from the technical side about how you introduced all those dialog lines into your game (did you have separate wav/ogg files/events for each dialog line? how did you load them into the game? if not, how were you able to sync the mouth action to the length of each audio queue? that's an area I struggled with in the jam)

You mentioned in your readme that you had built an engine in unity for P&C adventure games. I'm curious how much you had to bend your game in order to fit the technical limitations of your engine vs enhancing the engine to adapt for the game you wanted to create.

Overall, a really fun and memorable little game! (I'll definitely remember to bring that welder next time I personally travel in space!)

Cheers

Thanks for the play, feedback and rating! I put a lot of effort into polish, and even though it was a small game it took a lot of effort. I realized a week in (I did art the first week) that the design was pretty linear and easy. I couldn’t do much about it by then so just stuck with the design from day one. Worst, case, people don’t get stuck.

You are 100% right on the shielding and being the solution before the obstacle. I feel like the design suffered under the weight of just trying to make and implement the game. Next time!

re: voice lines. There are like 129 lines. Most are 1-2 lines long and they were recorded as a “line”. Something the player would say, then pause. Coule be 1 line, 2, 3, 4, whatever. I just imported them into a voice[] array in Unity. I used the index as the id for the file (and it coincided with the script, so I just played line 29, for example). Lip sync was nothing special. Just had a 6-7 frame “talk” animation with the head separate and several frames of mouth position. When I played a voice line I just played that animation for the length of the voice ogg file so at least the player stopped talking when the voice did. Cheap and easy and good enough.

re: my engine. It largely held up well for the things I’d tested before the jam. But I ran into a lot of instances where “uh oh, I have no way to lock a door/exit”, and things like that. But mostly it held up. I probably lost 2 days to coding new things, or having bugs or whatever. Couple hours here and there. Some things were 15m fixes and easy and some caused me grief. I did the jam as a reason to stress test the engine and see if I could make something more ‘real’ with it.

I’m pleased overall.

I always downplay the amount of effort that polish takes, and end up at the deadline with a game that is very rough around the edges, which unfortunately considerably brings down the experience for the player when the deadline hits! I guess it all starts with having a small scope under control that you can deliver in half the jam's duration or so... 

Very cool to hear about how you leveraged your game engine. Are you thinking about open-sourcing it or showcasing it at some point? I think I saw a few other games made by people who built their own scumm-like engine in unity.

re: polish, yes, it’s all about scope, pretty much. Less to do, more to polish. And insane time put in. I probably put in about 150hours on the game in 2 weeks. Pretty insane schedule.

re: engine, no. It’s ok for me, but nowhere near something other ppl could use or would want to. Something like PowerQuest (my recommendation if you have some programming / Unity experiecne), Adventure Creator (Unity), or AGS / Visionaire etc are much better choices. I was just working on it and at some point I was like “I have enough to get close to making an old Scumm game?”

What about you? What did you use for your game?

I ended up using unity and building everything from scratch, partly because I was naive thinking that this type of game would be easy to make. After all, what's there but a few animations and a couple of dialog trees... Oh boy was I wrong!! :) 

What saved me though is that I ended up finding really outstanding artists / musicians / vocal actors - all randomly through reddit / discord, meaning it could have gone in a very different direction -- but they ended up taking on all the artistic work from A to Z. On top of being super talented, they were all super accommodating with their craft to speed up the development process as well. It still came down to the wire, and I still wish we had had a few more days of polish, but overall it's only been made possible by the fact that I was surrounded well (see our game credits).

A lesson for work/life perhaps... :)

(just played your game) Impressive that you coded all that in a week and did all the other things. You’re right in that these games, while easy to code, have a ton of nuances and details and edge cases.

Well the code didn't just take a week, more like 13 days, 23 hours and 49 minutes :D

Thanks so much for playing it all the way through!