Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(+1)

Your game looks awesome. It's a shame there is no mac version. I found your game searching for soccer games, as I'm trying to make a small prototype for learning Unity. Do you have any recommendations for building a dribbling system? I've tried a few things but I'm stuck.

hiya, thanks!

the way I do dribbling is:

when player is not touching ball, walk into direction where ball is (actually, prediction of future ball position)

when player is touching ball, set ball velocity to be a combination of the player movement direction, and the direction of input/stick (these are not always the same if your player has momentum/sluggishness, after all)

I hope this helps?

(+1)

Hey thanks for answering my question. This is really helpful!