hi all, so i am trying to do a tile map and get my character to collide with them and jump from one to another etc, my character is 128,128px but my tiles that i found online (free) are only 32x32px , will this cause problems when doing collision?
the collision theory i am following is 2 rectangles one for character(r1) and one for each tile(r2)
this is example for if its touching top of the other
if (r1.Bottom >= r2.Top - 1 &&

Find content
Not Telling