Skip to content

Commit

Permalink
Merge pull request #4 from katestarks/add-readme
Browse files Browse the repository at this point in the history
Add readme
  • Loading branch information
katestarks authored Oct 6, 2019
2 parents 3a65ab1 + 58de149 commit 7fb028c
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Illuminate

## Playing

[Play the game on itch.io](https://darth-mediocrity.itch.io/illuminate)

## Making code changes

The file `index.html` accesses the javascript and css files from this GitHub repository (master branch), so changing those files here does not require uploading to itch.io.

If a change is made that requires uploading to itch.io (such as modifying `index.html`), create a zip file containing all the relevant files and folders and upload it.

When testing changes locally, you will need to modify `index.html` to use the local files, otherwise any changes you make to javascript or css will have no effect.
7 changes: 7 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
* {
box-sizing: border-box;
}

html, body {
margin: 0;
}
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<meta charset="UTF-8">
<link rel="shortcut icon" href="#" />
<title>Game Title Here</title>
<link rel="stylesheet" type="text/css" href="https://gitcdn.xyz/repo/katestarks/GameJamOct2019/master/css/style.css" />
<script src="js/phaser.min.js"></script>
<script src="https://gitcdn.xyz/repo/katestarks/GameJamOct2019/master/js/main.js" type="text/javascript"></script>
<script src="https://gitcdn.xyz/repo/katestarks/GameJamOct2019/master/js/sceneMain.js"></script>
Expand Down

0 comments on commit 7fb028c

Please sign in to comment.