How do you control your characters downward force like mario’s ground and pound and destroy a block below you can usually walk on in a 3d environment?
Cheers,
How do you control your characters downward force like mario’s ground and pound and destroy a block below you can usually walk on in a 3d environment?
Cheers,
hello @MetUtx,
Are you having trouble in how to apply force and character control?
than find Character Control Jump and do it reverse to apply down word jump.
Or
Are you face difficulty in when and how to break ground when it character collide to it?
steps:-
(1) Attach Box Collider at bottom of player in isTrigger = true.(get trigger when it collide.)
(2) Turn off that collider by default and turn on it when your character do that special jump.
(3) So isTrigger related method called. so check that ground is breakable or not. if breakable than break it. and not than play other animation.
(4) And again turn off The Box Collider.
These are the steps I find with my knowledge.(There will be other to do this.)
Feel free to comment.
Hope it helps.