Play game
In There's itch.io pageResults
Criteria | Rank | Score* | Raw Score |
Overall | #1 | 4.327 | 4.327 |
Graphics | #1 | 4.679 | 4.679 |
Game Design | #2 | 4.357 | 4.357 |
Audio | #3 | 4.286 | 4.286 |
Fun | #4 | 4.214 | 4.214 |
Innovation | #8 | 4.250 | 4.250 |
Theme | #32 | 4.179 | 4.179 |
Ranked from 28 ratings. Score is adjusted from raw score by the median number of ratings per game in the jam.
How does your game fit the theme?
You move from room to room by plunging into them and delve deeper into a dreamlike cavern
Did you write all the code and made all the assets from scratch?
Yes
Leave a comment
Log in with itch.io to leave a comment.
Comments
This was so much fun to play, the mechanics were simple but provided such a wonderful way of interacting with the world. The art style was definitely what stood out the most to me. It was very professionally made and complimented the gameplay very well. Even though the levels weren't complicated to navigate, it was nice to see light sources being used to guide the player, especially towards the ends, which signified the end of a section. Well done.
The bug I found (and it a very minor visual bug) was when I ran into a boulder. Just as I activated the anti-gravity ability after being hit, I found the walking animation was playing while I was floating. Fixed by switching anti-gravity on and off. I just thought I should let you know.
Overall, great game.
Thanks a lot! I've seen this bug a few times but couldn't trace back where it came from in time, there are a few others as well where the animations breaks. It always resets back to a correct state after switching to anti grav so I focused on other stuff °°
Yeah, that' fair enough. It definitely didn't spoil my experience of your game. Just something I wanted to point out in case you hadn't noticed it.
Loved what you were able to make in a week, it has a good base for something that's for sure.
The concept is brilliantly innovative, accompanied by captivating graphics, and offers an enjoyable gaming experience. To enhance user satisfaction, consider incorporating hints at each stage to assist when players are stuck and uncertain about their next steps also the swimming movement can be improved more I have done it In my own game.
//Use the logic I have made :
//The code can be more improve, but Its results are good.
private bool facingLeft = false;
float horizontalInput = Input.GetAxis("Horizontal");
float verticalInput = Input.GetAxis("Vertical");
Vector2 movement = new Vector2(horizontalInput, verticalInput);
movement = movement.normalized;
// Flip the character sprite based on movement direction
float angle = Mathf.Atan2(verticalInput, horizontalInput) * Mathf.Rad2Deg;
// Flip the angle if the x-coordinate is negative
if (movement.x > 0f)
{
// Apply the rotation and location to the object
transform.localScale = new Vector3(1, 1, 1); // Facing right
facingLeft = false;
if (movement.y > 0f)
{
transform.rotation = Quaternion.Euler(0f, 0f, angle);
}
else if (movement.y < 0f)
{
transform.rotation = Quaternion.Euler(0f, 0f, angle);
}
}
else if (movement.x < 0f)
{
// Apply the rotation and location to the object
transform.localScale = new Vector3(-1, 1, 1); // Facing Left
facingLeft = true;
angle += 180f;
if (movement.y > 0f)
{
transform.rotation = Quaternion.Euler(0f, 0f, angle);
}
else if (movement.y < 0f)
{
transform.rotation = Quaternion.Euler(0f, 0f, angle);
}
}
else if (movement.y > 0f)
{
if (!facingLeft)
{
transform.rotation = Quaternion.Euler(0f, 0f, angle);
// Facing Left
}
else
{
angle += 180f;
transform.rotation = Quaternion.Euler(0f, 0f, angle);
}
}
else if (movement.y < 0f)
{
if (!facingLeft)
{
transform.rotation = Quaternion.Euler(0f, 0f, angle);
// Facing Left
}
else
{
angle += 180f;
transform.rotation = Quaternion.Euler(0f, 0f, angle);
}
}
else if (!facingLeft && movement.y == 0f)
{
// Apply the rotation to the object
transform.localScale = new Vector3(1, 1, 1); // Facing right
transform.rotation = Quaternion.Euler(0f, 0f, 0f);
}
else if (facingLeft && movement.y == 0f)
{
transform.localScale = new Vector3(-1, 1, 1); // Facing left
transform.rotation = Quaternion.Euler(0f, 0f, 0f);
}
Bro how!! this is so damn good,probably the best Bro,in a week!!,The gameplay ,the mechanics ,the theme ,the art so good bro,keep it up. BTW i have smashed by the damn rock 1000 times XD
Duuude thanks! Really glad you had fun with it! °°
Wooooow such a pretty, amazing game! I had fun
Hey thanks! Glad you had fun with it!
Wooooow such a pretty, amazing game! I had fun
Beautiful art with incredible audio. A very professional game! It's amazing you were able to complete the art in just 7 days!
Oh thanks so much!
I think we got a winner here! 10/10 would clash againts a wall again
Thanks a lot! Really happy you liked it o/
Very professional project.
From a mechanical stand point, this is fantastic stuff, the character feels great.
Most of the game I feel gives me time to try to figure out the movement because its obvious these few buttons can become very big things to deal with.
Then the added game elements over time like the geysers. Nothing wrong with this game, it feels like a professionally built game. Good job considering we had 6 days.
I will say that the time it took in exploration detracted me a little bit, so that's more of a pacing issue. That's all.
Super cool to hear that you enjoyed it!
Yup I agree, a few of the more empty areas where you just walk around were for the mood. I think some of them happen too early, they maybe should have happened after a tougher mechanical challenge °°
Great game! Looks very beautiful and the game gets more challenging the further you get. Enjoyed it!
Thanks! Glad you had a fun time!
I've really loved your game but I don't know if it's I'm really blocked but ...
Yup I've heard of this bug. Best thing you can do is bounce around as fast as possible until it kills you and you can respawn. Sorry about that! °°
I've spammed the marbles to activate the bouncing eyes and infiltrate between them, I managed to get out.
And I've finished your Game :D it was really cool you can be proud of your works!
Niiiice! Thanks a lot for taking time to play it!
Love this game SO MUCH! Definitely my favorite so far. Top 10 material.
Oh thanks a lot! Glad to hear you had a great time with it
Love this game SO MUCH! Definitely my favorite so far. Top 10 material.