These are really rare but look at this:
This is angle correction outward style.a = point_direction(x,y,other.x,other.y)b = image_angle;d = b - a;faceprev = image_angleif(d < 180){if(b > a) then image_angle += 10;if(b < a) then image_angle -= 10;}if(d > 180){if(b > a) then image_angle -= 10;if(b < a) then image_angle += 10;}if(image_angle>360){image_angle-=360;}if(image_angle<0){image_angle+=360;}so the car lines up with the wall. I'm thinking it should have a not-sprite mask. Or you could just do it with direction for less fancy stuff. For 2D shooters here's inward angle correction…// it's for enemy's guns to slowly aim// you can change the 10s to whatever you want for// the speed of aiminga = point_direction(x,y,mouse_x,mouse_y)b = image_angle;d = b - a;faceprev = image_angleif(d < 180){if(b > a) then image_angle -= 10;if(b < a) then image_angle += 10;}if(d > 180){if(b > a) then image_angle += 10;if(b < a) then image_angle -= 10;}if(image_angle>360){image_angle-=360;}if(image_angle<0){image_angle+=360;}-Zac1790Like my new banner?Penguin Dude made the first one… but I got attacked by JakeX so I made this one.
I don't like the font in your banner.
Hey Zac give credit and he chose the font so yeah.
Yeah, penguin dude did it.
I just chose a font…The name looked good to me… Just not the rest. I guess that's proof that everyone only reads the last sentence.I could make a better banner in 20 seconds.
(See the user Scythetastic):O
……Well…I tried the code in DesertFox's skidmark example with 10's at 45 and image_angle as dir.It works great. It's like a slight bounce type thing, based on your speed. It might be better at 30…hmm.Scythetastic's doesn't show wips and games…
COOL MAKE ME ONE!!!Oh, wait… I can do that stuff myself… lol I'm great at photoshop… Just didn't think of that as a banner… looks like a name.I know this is my 3rd comment in a row but there it is.
I tried something different and it ended up like that.