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

Forest LifeView game page

This game has no idea. You can write about your idea in the comments. This game is being developed at Unity.2017.
Submitted by bornovalov — 11 days, 23 hours before the deadline
Add to collection

Play forest life ooo123ooo

Forest Life's itch.io page

Results

CriteriaRankScore*Raw Score
Visuals#2051.7222.167
Audio#2100.9271.167
Mood#2131.4571.833
Overall#2151.3581.708
Gameplay#2161.3251.667

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

Leave a comment

Log in with itch.io to leave a comment.

Comments

Submitted

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. 

Developer
The game is no longer under development





Submitted(+1)

 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;
    }

Submitted

couldn't play either, needs the unity runtimes

Submitted

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?
Developer
Ok i'll fix it