Not to sound like an idiot or anything but... how do you handle collisions on side scrollers? So far I've only had trouble when the level scrolled
but when it had no offsets it worked fine . Right now the game is a 15x15 grid of 32x32 tiles, and I've tried about 10 ways in the past month
to get this to work and so far they've failed.
Ps. Sorry if I sound retarded, I'm just frustrated and tired
ajtgarber wrote:So far I've only had trouble when the level scrolled but when it had no offsets it worked fine
Generally, I will always store player position and calculate collisions using "world" coordinates (i.e. positions relative to the level). I store the "camera" position separately and use it as an offset to convert "world" to "screen" coordinates only when drawing. This means that scrolling has no effect on game logic/collision code.
ajtgarber wrote:Not to sound like an idiot or anything but... how do you handle collisions on side scrollers? So far I've only had trouble when the level scrolled
but when it had no offsets it worked fine . Right now the game is a 15x15 grid of 32x32 tiles, and I've tried about 10 ways in the past month
to get this to work and so far they've failed.
Ps. Sorry if I sound retarded, I'm just frustrated and tired
It should be the exact same as with nonscrolling. The only "offsets" that scrolling is applying is only for RENDERING, not to the actual location of the entities. So I'm not exactly sure how you're handling it.
But like ClassA said, it shouldn't make any difference how things are "rendered."
Imagine if my collision checks changed when we zoomed in/out and rotated the world in ES.
Soz ignore my post, I haven't got enough sleep recently
But ye only the tile rendering gets affected by the offsets, whereas the collision checks are normal just like non-scrollers.