public
Description: A 2d game written in Java with real time lighting as a central gameplay mechanic.
Homepage: http://github.com/aschearer/shade/wikis
Clone URL: git://github.com/aschearer/shade.git
shade / README
100644 40 lines (23 sloc) 1.056 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
Shade -- A casual 2d game written in Java
    http://github.com/aschearer/shade/wikis
 
An ant file is included with this project. To get up and running please
follow these instructions.
 
Building Shade:
 
    ant build // compiles source code and creates shade.jar
 
Running Shade:
 
    ant run // executes shade.jar with necessary arguments
 
Cleaning:
 
    ant clean // removes bin/, webstart/, and shade.jar
 
Deploying Shade:
 
    ant webstart // creates a webstart to deploy to a server
 
This last one warrants some explanation. If you want to create a webstart
to host Shade on your website then you need to provide the url for your
server as well as a username and password to sign shade.jar.
 
This will create a directory, webstart/, which contains all the necessary
files. Simply upload webstart/ to your server and navigate to:
 
    http://anotherearlymorning.com/webstart/shade.jnlp
 
 
Please see the wiki for all issues including but not limited to:
 
  + Building and running Shade
  + Contributing to Shade
  + Reporting bugs
  + Giving Feedback