mirror of
https://github.com/godotengine/godot.git
synced 2024-11-21 19:42:43 +00:00
Created tutorial_tilemap (markdown)
parent
5779cf1970
commit
f39f787f14
21
tutorial_tilemap.md
Normal file
21
tutorial_tilemap.md
Normal file
@ -0,0 +1,21 @@
|
||||
#Creating a Tilemap
|
||||
|
||||
### Introduction
|
||||
Tilemaps are a simple and quick way to make 2D game levels. Basically, you start with bunch of reference tiles (or pieces) that can be put in a grid, as many times each as desired:
|
||||
|
||||
<p align="center"><img src="images/tilemap.png"></p>
|
||||
|
||||
Collision can also be added to the tiles, allowing for both 2D side scroller or top down games.
|
||||
|
||||
###Making a Tileset
|
||||
|
||||
To begin with, a tileset needs to be made. Here are some tiles for it. They are all in the same image because artists will often prefer this. Having them as separate images also works too.
|
||||
|
||||
<p align="center"><img src="images/tileset.png"></p>
|
||||
|
||||
Create a new project and throw those inside.
|
||||
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user