added some documentation & explanations

This commit is contained in:
Noel Berry
2021-01-04 18:55:26 -08:00
parent 68bb409f98
commit 7173d65263
8 changed files with 30 additions and 0 deletions

3
content/map/readme.md Normal file
View File

@ -0,0 +1,3 @@
Due to making this game under heavy time constraints, I opted not to make or use a level editor. Instead, each object is assigned a color and I used a generic paint tool to design the levels.
Under normal circumstances, I would argue against this method and instead use something like Ogmo Editor or Tiled. It's really hard to remember what object is what color!

View File

@ -0,0 +1,5 @@
The sprites are stored in the [Aseprite](https://www.aseprite.org/) format, and you'll need Aseprite to edit them.
A few other notes:
- Animations are loaded automatically using Aseprite's `Tag` feature. Each tag is a unique animation
- Sprite Origin points use Aseprite's hidden `Slice` feature, which can be used with Shift+C. You can draw slices and give them a pivot point, which we're using to set the origin point of the sprite.

View File

@ -0,0 +1 @@
The tilesets are stored in the [Aseprite](https://www.aseprite.org/) format, and you'll need Aseprite to edit them.