Hello.! How can I make an object fall and after certain distance and collide with floor it change image? For example a egg fall to the floor and it crak after certain highness thanks in advance
try to use distance() expression
Develop games in your browser. Powerful, performant & highly capable.
You could also try something like,
On Fall - every tick add 1 to FallHeight Global variable.
On Landed, if FallHeight >= (height you want to change state) - Change state.
Something like that might work.
Thank you all.! I will try it if it work