Game Like The Line Zin in Unity

Hey

how do i make game like The Line Zin in unity

https://play.google.com/store/apps/details?id=com.tp.thelinezin

Thank you

Start off by making a simple level. Have colliders on everything, have the camera follow the player, put a movement script on the player, detect the collisions. After that work out what you want to happen when the player collides with something.

1 Like

Thank you tedthebug :):slight_smile:

How can i make player (ball) explode? particle?

Thank you again

“destroy” (or “SetActive(false)”) ball and “instantiate” particle object on that place.

2 Likes

thank you vakabaka and tedthebug…