mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-05 12:02:13 +00:00
No description
|
|
||
|---|---|---|
| css | ||
| img | ||
| .gitignore | ||
| algos.js | ||
| favicon.ico | ||
| helpers.js | ||
| index-browser.js | ||
| index.js | ||
| items.js | ||
| Makefile | ||
| package.json | ||
| README.md | ||
Shared resources useful for the multiple HabitRPG repositories, that way all the repositories remain in-sync with common charactaristics. Includes things like:
- Assets - sprites, images, etc
- CSS - especially, esp. sprite-sheet mapping
- Algorithms - level up algorithm, scoring functions, etc
- Item definitions - weapons, armor, pets
Note: We can't load CommonJS format into the browser. There's a way to pull it in with RequireJS (r.js?), but I couldn't get that working. Instead I created a Makefile which runs Browserify to compile index-browser.js, which you include in a <script/> tag in your index.html. Let's fix this sometime.
##Installation
npm installmake
##CSS Shared CSS between the website and the mobile app is a fuzzy area. For now we'll have the website define canonical CSS, and share that down the mobile app.
To do so,
- go to the website repo
- remove the first line
@import nib/vendorfrom index.styl stylus styles/app/index.styl- copy the output index.css into this shared/css directory