Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jefftriplett/ludum-dare-39

:space_invader: My entry Ludum Dare 39: Sokoban :package: :sparkles:
https://github.com/jefftriplett/ludum-dare-39

gamedev ldap love2d lua ludum ludumdare ludumdarejam sokoban

Last synced: 12 days ago
JSON representation

:space_invader: My entry Ludum Dare 39: Sokoban :package: :sparkles:

Awesome Lists containing this project

README

        

# Ludum Dare 39: Running out of Power aka "Sokoban" for me

This is my first Ludum Dare 39. It has a Sokoban game heavily inspired by all Sokoban games before it.

![screenshot](https://www.evernote.com/shard/s27/sh/0ef2ad94-5f1f-4377-9798-8136959bd781/d76b63ed276a4e62/res/c0e03fdf-670f-44cd-9ae9-2b6e4c5ea515/skitch.png)

## Resources

- [Kenney](https://kenney.nl/) for graphics
- [Tiled](http://www.mapeditor.org/) for editing tile maps
- [ShoeBox](https://renderhjs.net/shoebox/) for editing images
- [Sublime Text 3](https://www.sublimetext.com/)
- [Version control via Tower](https://www.git-tower.com/mac/)
- [Emoji Cheat Sheet](https://www.webpagefx.com/tools/emoji-cheat-sheet/)
- [Emoji Styleguide Git Commit](https://github.com/slashsBin/styleguide-git-commit-message)
- [Scott Lindhurst's Sokoban Levels](http://sneezingtiger.com/sokoban/levels.html)

### Lua Resources

- [Lua](https://www.lua.org/)
- [Lua Style Guide](http://lua-users.org/wiki/LuaStyleGuide)
- [awesome-lua](https://github.com/LewisJEllis/awesome-lua) - A curated list of quality Lua packages and resources.

### LÖVE Resources

- [LÖVE](https://love2d.org/)
- [anim8](https://github.com/kikito/anim8) - An animation library for LÖVE
- [awesome-love2d](https://github.com/love2d-community/awesome-love2d) - A curated list of amazingly awesome LÖVE libraries, resources and shiny things.
- [LÖVE Helper Utilities for Massive Progression](https://github.com/vrld/hump)
- [Simple-Tiled-Implementation (STI)](https://github.com/karai17/Simple-Tiled-Implementation) - Tiled library for LÖVE

### Resources for Overcoming the Impossible (Aka Googling)

- [Animation while moving sprite?](https://love2d.org/forums/viewtopic.php?t=28282) This forum thread helped me figure out what I was doing wrong with my directional animation.
- [How to display animation while moving a sprite?](https://stackoverflow.com/questions/15488304/how-to-display-animation-while-moving-a-sprite)
- [Using Tiled Maps in LÖVE](http://lua.space/gamedev/using-tiled-maps-in-love) This tutorial shows how to attach a player sprite to the map via a layer and control their movement.