Arrow keys, space bar TODO: Mipmaps; more tiles.
=== General Notes === This effect is based on the "mode 7" effect from the SNES. To simplify, the SNES rendered everything 1 horizontal line at a time, so in between lines, the scale of the background was changed. This was used to make the bottom lines larger, making them look closer than further lines. This effect was used in games like F-Zero and Super Mario Kart. === My Implementation === Since scratch does not render things line by line, I had to take a different approach. The background is rendered back to front, using a new stamp on each line to cover the bottom of the previous stamp. I used the mosaic effect to repeat the texture and only stamp once per line, which is much faster than repeatedly stamping the texture.