Edge Grabbing

Published November 21, 2015
Advertisement
Afternoon.



Got the start of edge grabbing working now. You have to hold down left mouse while jumping or falling to enter the grabbing state, then the system will attach the character to an edge when it is close enough, locking him into the correct position and orientation.

Next up I'm going to tackle shimmying along the edges. With this in mind, I've added the facility to work out what the adjacent two edges to the current edge are (the red and blue lines in the video) which is just a case of getting a list of nearby bodies from the broadphase, then checking the distance between the opposite end points and the ends of the current edge. Fairly dull stuff, won't go on about it.

Nice to see that switching to rag doll from the grabbing position seems to work flawlessly. Will save a great deal of work with death animations and so on.

[EDIT]



Spent a couple of hours this morning roughing out some prototype stuff for shimmying along edges. Not quite as bad as I thought, although it is early days as yet. I'm basically just taking a normal pointing along the current edge, moving the position along the normal and doing another check for a valid grab position at the new position.

I'm also including a simple boolean intersection test of the character controller shape against the environment. I only update the position if all the tests pass. Since shimmying only moves a small number of units per frame, this should be acceptable and no need to actually resolve intersections with a minimun separating vector should be required, which makes life easier.

Obviously no animation yet and haven't started tackling shimmying around corners. I have the references to the next left and next right edges set up, so should be a case of working out how much I have overstepped the current edge, and then moving that amount along the next edge. I can do something with the normal returned by the PcGrab component to make the corner transition rotation work nicely I think.

Looks like editing my journal is no longer eating my YouTube links by the way, so thanks if someone sorted that out.

That's all for now really. Thanks for dropping by.
8 likes 4 comments

Comments

unbird

Looking gooood. Congrats.

November 21, 2015 09:31 PM
Aardvajk
Thanks. Didn't realise how difficult it is to see the reference lines in the video, but doesn't really matter I guess.
November 22, 2015 08:06 AM
unbird

Debug stuff: For your developer eyes only :wink:

November 22, 2015 02:06 PM
llll

Can you tell me how you added grabbed edges?

August 21, 2021 01:37 PM
You must log in to join the conversation.
Don't have a GameDev.net account? Sign up!
Profile
Author
Advertisement
Advertisement