Log In  

Cart #55294 | 2018-08-17 | Code ▽ | Embed ▽ | No License
6

This cart outlines a fairly simple way in which diagonal vectors can be normalized, to avoid super-fast diagonal movement. On tab 0, you can check out the normalization code, and an example of where you should drop it in your code to make it work!

Feel free to use this function in your code, or to revise the math to make a more efficient system! The movement is a little jittery, so there's definitely room for improvement!

Also ... Vector the Skateboarding Duck might feature in future games. We'll see!

P#55295 2018-08-16 23:10 ( Edited 2018-08-17 13:59)

Interesting. Player is penalized for moving diagonally and does not move as fast if just up, down, left, or right.

That should add challenge to a skater game !

P#55300 2018-08-16 23:59 ( Edited 2018-08-17 03:59)

@dw817 - Oh, it's not meant to penalize!

Say you want to cap your player's movement at 2 pixels per frame. Without normalizing, your player can move 2px vertically, 2px horizontally, and 2.8px diagonally. This code caps the diagonal movement at 2px, so movement in all directions is more-or-less the same pace!

P#55320 2018-08-17 09:59 ( Edited 2018-08-17 13:59)

but when This code caps the diagonal movement at 2px, sprits look like shake,how to solve?

P#115197 2022-08-03 13:58

Nice implementation. I like the smoothing of the turning. Normally in games with simple UDLR controls, people just lock 8 directions of movement and multiply the diagonals by sqrt(2)/2. Your method gives a much more natural, smooth feeling experience.
In my game, I accomplished this by having left/right increment a facing angle, and then use sin/cos and a speed to make normalized force vectors, which affected velocity vectors.

P#115571 2022-08-10 18:28 ( Edited 2022-08-10 18:29)

[Please log in to post a comment]

Follow Lexaloffle:          
Generated 2024-03-28 11:50:38 | 0.015s | Q:23