Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mlms13/amazing-jetpack
https://github.com/mlms13/amazing-jetpack
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/mlms13/amazing-jetpack
- Owner: mlms13
- License: mit
- Created: 2015-01-12T01:11:22.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-05-22T04:45:31.000Z (over 9 years ago)
- Last Synced: 2024-04-15T12:13:21.057Z (7 months ago)
- Language: Haxe
- Size: 2.08 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Amazing Jetpack!
This is my January entry for the [Serious Biz](https://github.com/seriousbiz) game-a-month challenge. It isn't a particularly fun game, but that could possibly change with a little work.
### Build it yourself
The game is written in Haxe and it depends on the dev version of [Luxe](http://luxeengine.com/docs/setup.html). Once you have that working, you should be able to `cd` into the amazing-jetpack directory and `flow run` to see all of the beauty.
If you feel like modifying any of the sprites or tiles, you can find them in `_materials`. To generate the spritesheet for the animated penguin, I use the follwing [Fish](http://fishshell.com/) script on Ubuntu. Prefer bash instead? You're smart. You'll figure it out.
```sh
cd _materialsfor i in *.svg
inkscape -f $i -e $i.png
endconvert penguin*.svg.png +append ../assets/penguin_animation.png
```