summary refs log tree commit diff stats
path: root/src/editor.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Can click to place tiles in editor now HEAD masterKelly Rauchenberger2019-03-161-2/+37
|
* Editor now allows tile placementKelly Rauchenberger2019-03-101-11/+235
| | | | You can scroll through the three layers (map, track, object) with Z/X. You can swap between focusing on the map and the tileset with TAB. You can place tiles with enter or space. Pretty rudimentary, but it's a start.
* Editor now renders a tiled background imageKelly Rauchenberger2019-02-241-0/+27
|
* Started state machineKelly Rauchenberger2019-02-241-0/+13
The "--editor" flag can be passed to the program to start it in editor mode, which is currently nothing. The Renderer class was removed here, as each state basically needs to do its own rendering. However, refactoring to make this more elegant will probably occur in the future.