Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

You should check this out after you finish playing the game. Sticky Locked

A topic by taxol created Mar 31, 2023 Views: 86
This topic is locked
Viewing posts 1 to 1
Developer (1 edit)
switch (Scene)
{
    case DogScene:
        if (_time >= 30s)
            PlayerCanMove();
        break;
    case FoxScene:
        if (_time >= 60s)
            PlayerCanMove();
        break;
    case PigScene:
        if (_time >= 120s)
            GameEnd();
        break;
}