https://github.com/ananace/ld31
My Ludum Dare 31 entry
https://github.com/ananace/ld31
Last synced: 16 days ago
JSON representation
My Ludum Dare 31 entry
- Host: GitHub
- URL: https://github.com/ananace/ld31
- Owner: ananace
- License: mit
- Created: 2014-11-29T19:08:03.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-12-05T03:01:42.000Z (over 10 years ago)
- Last Synced: 2025-11-15T07:27:52.494Z (8 months ago)
- Language: C++
- Size: 242 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
LD31
====
My Ludum Dare 31 entry
This time I'm doing it as much in scripts as possible, the script interface documentation is available here: [Script Interface](https://gist.github.com/ace13/ae6db4b5c6fbcf41b7fd#file-script-interface-md).
Or you can dump a local copy by starting the application with the argument '-d'
It will automatically load all scripts directly situated in the `Scripts/` folder, and will also autmatically hot-reload any scripts if they change.
Dependencies
============
This entry's built on top of the SFML git and Angelscript SVN, so you might want to grab recent versions of both.
It also uses CMake for build system generation, so that's a plus too.
And because of quite extensive use of C++11 I recommend a recent compiler, the CMake script should stop you from using one that won't be able to compile it anyway.
NOTE
====
Currently doesn't work on 64-bit Linux because Angelscript doesn't support returning by value there.
On the To-Do list to set up wrapping for this.