Skip to content

niC00L/jozef

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

91 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fox Run

Bachelor project. Mobile endless runner game, where you don't control the character, instead you control the world around it. You have to collect items and use the right item at the right time to destroy obstacles and save the fox.

Two versions of application exists. First one with linear increasing difficulty. Another one with adaptive difficulty affected by heart rate provided by Samsung Gear S3 watch.

screenshot
screenshot
screenshot

Sources:

private static GameManager _instance;
    public static GameManager Instance { get { return _instance; } }
    private void Awake()
    {
        if (_instance != null && _instance != this)
        {
            Destroy(this.gameObject);
        }
        else
        {
            _instance = this;
        }
    }
public static IEnumerator WaitForUnscaledSeconds(float dur)
    {
        var cur = 0f;
        while (cur < dur)
        {
            yield return null;
            cur += Time.unscaledDeltaTime;
        }
    }

About

Bachelor project

Resources

Stars

Watchers

Forks

Packages

No packages published