Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

If you used the Unity physics built in engine and then used code to modify it, especially    void Update()    it will function differently on each machine (at least in WEBGL) that runs it (i had the same problem originally in my game).  Programming your own gravity or using void FixedUpdate() might fix the different speed issue.

(+1)

Thanks I'll try that