This game honestly look beautiful, something that I think that would take it to the next level is adding some sounds effects. Anything nature or something that depicts that we're in nature would be cool!
You mention that this game has no idea? I still think it's a pretty cool concept, how did you think of this game?
As a side note, I have a 2k resolution monitor and 144 hz display, the quality of game runs very smooth and it's impressive nonetheless.
Play forest life ooo123ooo
Forest Life's itch.io pageResults
| Criteria | Rank | Score* | Raw Score |
| Visuals | #205 | 1.722 | 2.167 |
| Audio | #210 | 0.927 | 1.167 |
| Mood | #213 | 1.457 | 1.833 |
| Overall | #215 | 1.358 | 1.708 |
| Gameplay | #216 | 1.325 | 1.667 |
Ranked from 6 ratings. Score is adjusted from raw score by the median number of ratings per game in the jam.
Comments
Not really a game, but it is always good to learn and try things! :) I would recommend learning to add some sounds and 3D spacial area SFX on it, would make the immersion feeling nicer. Also pause menu only works now if you keep pressing ESC, and the world is moving at the same time, so not really good. Try this out:
void Update()
{
if (Input.GetKeyDown(KeyCode.Escape))
{
if (GameIsPaused)
{
Resume();
}
else
{
Pause();
}
}
}
public void Resume()
{
pauseMenuUI.enabled = false;
Time.timeScale = 1;
GameIsPaused = false;
}
public void Pause()
{
Cursor.lockState = CursorLockMode.None;
Cursor.visible = true;
pauseMenuUI.enabled = true;
Time.timeScale = 0;
GameIsPaused = true;
}
Hi! I cannot play your game when I download it due to this error:

Normally this file is in the root of the game folder after building with unity. Is it possible your submission is missing it?






Leave a comment
Log in with itch.io to leave a comment.