Domino sample/tutorial

Hi guys,

are there any tutorials or atleast what things do i need to do to make a simple domino effect demo.
the one when blocks are arranged and when a block is clicked the block will fall and proceed with a domino effect fall.

what things do i need to look into at first?
thanks

It’s simple, just create a domino shaped cube, give it rigidbody, aslign a bunch of these on a line, apply force to the first one, done. Unitys Physic system solves it all.

so how do i “apply force”?

if you have the rigidbody as a variable, then rigidbody.AddForce(transform.forward * 10);
Just make sure to replace the rigidbody with the variable name, and that the domino is facing the rigth way