Car pixel art
725 spritesCars, trucks, tanks, and motorcycles. Free pixel art vehicle sprites for top-down and side-scrolling games.
725 sprites
No sprites match these filters.
Car pixel art
Cars, trucks, tanks, and motorcycles. Vehicles are the subject where a square canvas stops making sense, and that is worth knowing before you start.
Side view and top-down share nothing
These are two different sprites, not two angles of one.
A side view is about profile. Roof line, window shape, wheel arches, and the length-to-height ratio that separates a sports car from a van. Two wheels visible, both the same size, both sitting on the ground line.
Top-down is about the roof and the ends. The player sees almost none of what makes a car recognisable from the side, so the read comes from overall outline, the windscreen, and making the front clearly different from the back.
Deciding which one your game needs prevents drawing the wrong sprite well.
Non-square canvases are correct here
A car at 32x32 wastes most of its canvas on empty space above and below, and squeezes the length that carries the shape.
64x32 for a side-view car is far more honest. A truck might want 96x32. This is one of the few places where breaking a uniform sprite size is the right call rather than sloppiness, because the subject genuinely has a different aspect ratio to a standing character.
Rotation for top-down games
Eight angles at 45 degree steps covers most top-down games and is what the majority of arcade racers shipped with.
Sixteen is worth it if the player watches the car every frame, which in a racer they do. Four is enough only for grid-based movement where the vehicle snaps to cardinal directions anyway.
Draw the cardinal four first, then the diagonals. The diagonals are harder and doing them last means you already know the palette and proportions are settled.
Wheels are the thing that breaks
At small sizes a wheel is three or four dark pixels, and the temptation is to draw a circle with a visible rim.
Do not. A solid dark shape with one lighter pixel for the hub reads far better than an attempted circle, which at four pixels across turns into a square with rounded intentions.
For motion, do not rotate the wheel. Cycle two or three frames of spoke pattern in place, or just add a small dust or speed line at the contact point. Rotating a four-pixel wheel produces a flicker rather than a spin.
FAQ
Decide the view first. A side view needs a readable profile with two wheels, a top-down view needs a roof and the front and rear ends distinguishable, and the two share almost no pixels.
Eight covers most games, at 45 degree steps. Sixteen is noticeably smoother for a racer where the player watches the car constantly, and four looks jerky in anything but a grid-based game.
32x32 for a top-down car in a tile-based game, 64x32 or wider for a side view where length carries the shape. Vehicles are one of the few cases where a non-square canvas is the right answer.
Yes. Every one downloads as a free PNG with a transparent background.