Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
Repository created
  • Loading branch information
alexbelyeu committed Oct 20, 2015
1 parent 647cd9b commit df8022b
Show file tree
Hide file tree
Showing 125 changed files with 65,624 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"globals": {
"THREE": true,
"webkitAudioContext": true,
"AudioContext": true,
"_": true,
"_gaq": true
},
"laxcomma": true,
"node": true,
"devel": true,
"jquery": true,
"browser": true,
"debug": true, //allow debug statements
"eqeqeq": true, //must use ===
"latedef": true, //variables must be defined before use
"undef": true //all variables must be declared
}
674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
![Polar Space logo](https://raw.githubusercontent.com/TatumCreative/polar-space/master/assets/images/logo.png "Polar Space")

###A retro space game in WebGL and three.js

Play it right now at http://gregtatum.com/polar/

#### Levels

* Level 1: [Intro - Invasion of the Jellies](http://gregtatum.com/polar/#/level/intro)
* Level 2: [Polar Rocks - Flight into the Asteroid Field](http://gregtatum.com/polar/#/level/asteroidsJellies)

####TODO:

* Optimize GL draw calls

#### Development installation

This project uses npm modules, Browserify, and Gulp. You need npm installed before you can run the following from terminal:

To install the npm modules:

npm install

Start running the tasks to watch the code for building and bundling the JS to `/assets/build`:

gulp


Project copyright (c) 2014 Greg Tatum under GPL v3.
Loading

0 comments on commit df8022b

Please sign in to comment.