I'm trying to detect collision when my player hits the bottom of the lucky block
I heard you use is overlapping at offset but I'm not sure how it works
You can simply compare Y coordinate. For example:
Player On Collision with Block Player compare Y > (Block+20) ............. Block spawn Coin
Develop games in your browser. Powerful, performant & highly capable.
What do you mean by:
`Player compare Y > (Block+20)`?
That works! thank you so much!