How to create view from overhead, like a pool table

I was hoping someone can help me. I am new to corona.

I am creating a 2d game that is viewed from overhead, in other words, looking down on the screen from above.

I have been searching for days on how to do this. I have created a screen, but when physics is on, all objects fall down to bottom of screen.

Thanks you in advance.

Top down games don’t need gravity. So you simply need to turn it off.

physics.setGravity( 0, 0 )

Will take care of you!

Rob

Top down games don’t need gravity. So you simply need to turn it off.

physics.setGravity( 0, 0 )

Will take care of you!

Rob