Skip to main content

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

Azq2337

54
Posts
1
Followers
15
Following
A member registered Oct 14, 2024 · View creator page →

Creator of

Recent community posts

Glad you liked it.
I apologize that the how-to-play is unclear and visual cues are misleading.
The "performance issue" is consistent across all devices, because it is not actually performance issue. Instead, it is a race condition bug when entities spawn, interact and despawn. I will be honest I was not able to fix it due to "Skill Issue".
Shoot sound is bad I know... In fact I was totally lazy in terms of assets for this game. I do intend to develop a indie game that is not for game jams, so by then I will be more serious about finding quality gun sounds among others.

(1 edit)

Thanks. Very detailed inspection from your side.
I agree that rules and interfaces were not so well thought out in retrospect.
400/800 is because of "stable mode"(a mode intended for WASM due to performance, otherwise it should be able to grow to 800 when building from source.
The performance issue is something that had troubled me during the development, but alas my basic skill in Rust is not good enough to resolve it, so instead I reduced the amount of objects in the world - which made the game less stuttering but yeah this is not the right way to do it (optimize).
I am ashamed by heavily using vibe coding, because I saw in Discord many veterans were not happy about this and the jam rule kinda disallow it. Out of respect to others and myself I should definitely hone real Rust and Bevy skill from after this jam.

Thanks for the compliment and feedback.
I now realize that the win condition is confusing for new players. It was a design oversight, somewhat due to me making and testing as sole developer. I will make sure to get more people to test before releasing in the future.
The gameplay is still rough tbh, but I'm moving on from this since jam time is over. 
Audio-wise I felt unearned because they are royalty free music I found online. Maybe I should display this information more explicitly.

You are right about Slime Ranger, it definitely plays a subconscious part in the design of this game.
About tutorial, I should have added more text in the start menu. Part of me thought that writing in description is good enough but apparently most players expect everything to be explained in game, which is natural and something I should keep in mind in the future.

Didn't know ASCII game can be this fluid and expressive (and bloody)! 

I dig the aesthetic, like how the cubes fall apart.
But some obvious issue I found frustrating:
- Control and camera don't sync very well leading to unwanted movements
- It's unclear how vertical movements work, sometimes it works but sometimes you just fell through

It's incredible you included so many modes in this game.
Visual and audio are pretty nice and serve the theme well.

Just beat it after coming back 2 times... Something about my mental inflexibility LOL.
Still, very clever design.

Fun beat'em up. I like the goofy art style and characters.
Wonder how hard this is to make in Bevy, because surely this kind of game seems easier to make in other engines.
The aim shooting mini-game is a drag though, and I did not even win it. Then it pops me back to the main menu🥲

Glad you enjoyed it!
Yeah, the physics based game mechanism has this automatic fun factor to it. It kinda just works. 
The barrier you mention is a nice advice, but you see  - those shapes are out of control man, sometimes they take to the sky 😂
Anyways, this is a very roughly-made game. I made it simple so that I can look back at my Git commits to re-study how they were made. It was vibe-coded, but I don't intend to vibe code too much if I am serious about using Bevy more in the future.
---
Just checked out your game and channel, and I'm a instant fan!

Wow that's a high praise for this experimental game. Thanks a lot!
The shooting sound is because of my laziness - I didn't bother to find shooting sound assets so I chose a random impact sound. Admittedly it is very fatiguing to listen to, especially in high frequency.

(1 edit)

What a genius design!
Everything feels smooth and refined. The puzzles are well thought out too.
Maybe I am just way too stupid for this, but how do you delete other people's code

(1 edit)

Thanks for the feedback! Yeah, the shape size difference is a bummer.
Originally I plan to have the shapes be replaced by voxel animal models but in the end I didn't quite get the 3D models to work and performance tanked.
Definitely more to learn and improve after this jam.

The game design and visuals are so darn cool! But yeah the aligning is a bit iffy and the tunnel level just lost me completely 😅

OK I replayed my game and think I get what you mean: Single tap input result in too much movement, takes too long to stop, and the reverse movement input doesn't mitigate the inertia but instead push you to the opposite direction.

Sorry my movement implementation is way too primal, like I only used a coefficient of below 1 to reduce the speed down to 0. Math is not my strongpoint, but I will learn to implement better physics in the future.

(1 edit)

Thanks for the encouragement. The control is slippery I guess, but when it comes to sensitivity, I think it is no where near that Metal Man 3 game that also participated 😝 I mean, they are going for that retro FPS feeling, such like Ultrakill.

Gameplay mechanics and level transitions are really smooth. Overall system is quite complete, including the menus. A nickpick would be the emphasis is put too much on platforming design rather than creating something special (I am nickpicking for sure).

Thanks for the feedback! I threw the game together right after following GDQuest guide so much is left undone. 

Apologies about the music volume but I hadn't got around to make any menu systems as you can see. 

The walking on ice feeling is an unfortunate side effect of my custom implementation of the movement system, because the tutorial version of walking is way too stiff. I will learn some more from more experienced developers and maybe refresh my physics knowledge on frictions.

Though a little rough on the edges, this is better than a lot of the indie games out there! Keep up the good work.

Yeah.. well your game is quarantined by other people. Maybe next time do things the official way?

Gotta finish them dailies!

Style is really good. Difficulty is off the roof.

Torture rooms... Can't say I like these themes but at least the game is well developed.

So polished! This can evolve into a full horror game.

Thanks! Didn't finish the full game but learned a lot of Godot from it. 

Will improve and try to deliver a full package next time. May participate in Brakeys :D

Some notes for myself: (accidentally wrote a dev log)

1. This game is made alongside 1 week Godot learning from GDQuest 3D first-person game tutorial. Originally I was going to use Unreal Engine 5 (which I already learnt for a month) but the minimal export size is 600MB+, which is horrible however you put it.

2. I wasted 2 days figuring out what form the game is going to take, this is in fact the third idea, the first two are even more unachievable: first is to reproduce a working man's PDCA loop narrative-driven, second is to hunt animals by going around 3 islands but each loop the task becomes more insane/inhumane (coining the working man reality). OK enough of self-pity.

3. During making of the game, I specifically didn't intend to finish the game if the controls feel janky, so I spent hours refining the gun feel and movement physics, also added a FPS and TPS switch (which is something I always wanted to do). What I learned are: 

(1) Just like any well-packaged game engine, there are rules and limits. For example, the movement in basic terms is just directions plus velocity, but I want it to have decceleration for inertia feel (IMO helps immersion). What I found is that multiply works very well but add/subtract always overshoot and unable to stop, also when the value is very low it automatically set to 0. (Sure I will check if there are solutions available or if I am just doing it wrong)

(2) Camera transitioning is done by simply disable and enable different camera instances, which is far worse than Unity's larp function (Smooth AF). Of course in theory a third camera can be added to do the transition animation, but I haven't found online free offering for such yet.

(3) Godot can be daunting for big dreams, because first it does not have a lot of built-in features (you need to implement a lot by yourself), secondly (and this is not Godot's fault) but the Unity and Unreal assets stores give much more pain-relief to beginners.  One may hate the monopoly and commercial captilism surrounding these stores, but at the end of the day the industry machine doesn't favor the weak very often. That's why indies are indies. Creative Commons is already such a huge step for individual creators, and here's to hoping it grows continously! (and not get demolished by AI craps)

Bravo, I think you can be the next Milk!

(2 edits)

This one stirs feelings. 

I replayed the game and reworted this comment.

I know nurse-chan is supposed to be the eye-catcher here but her characterization is really well done and moving.

It breaks my heart that the protagonist has to die even when he almost regained memory ablity, though I know this is intentional and realistic in some way.

Really good job! The game style definitely reminds me of Milk inside a bag of milk.

The puzzles are well designed! If player can select other tracks afterwards and restart current level it would be better.

Artwork is  so good! Gameplay is simplistic but servisable.  The pop up effects are pretty smooth which is a nice touch.

Fun Braid like experience.

Ah yes, the peasant loop we all know and love

Shame the interaction Z stopped working after picking up the key. Looks intriging though.

(1 edit)

An entrepreneur's wet dream. Too addictive I tell you. Wish this is real life.

The custom-Linux vibe is also a plus.

Reminds me of Ultrakill! Nicely done. And this is in Godot engine too! I should learn some more then.

(1 edit)

Thanks man! A shame those ideas never came to being

The timeloop overview system works like a charm! Very impressed.

(1 edit)

Nice. Mine was Sisyphus but he doesnt push boulders haha

Stop action is way too slow. Maybe another tram on the track can make the game more accessible.