-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
58 lines (39 loc) · 1.38 KB
/
Copy pathREADME
File metadata and controls
58 lines (39 loc) · 1.38 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
Yabag - Yet Another Ball Game
##############
# 1. Install #
##############
Yabag requires the Pygame-library for Python, you can obtain it from
http://pygame.org/download.shtml or via your distro's repositories;
Ubuntu 11.10 (Oneiric) for example keeps it as 'python-pygame'.
Furthermore, you need to have a new-ish version of Python on your system.
Then, checkout the repository into the desired folder, for example:
cd ~/Games
git clone git://github.com/baumanno/Yabag.git
This will create a folder 'Yabag' in ~/Games.
##########
# 2. Run #
##########
To run Yabag:
cd ~/Games/Yabag
python run.py
That's all!
###############
# 3. Gameplay #
###############
Its plain simple: balls speed across the screen. If your mousepointer
hits a ball, you loose. The longer you last, the better (as usual...)
#################
# 4. Difficulty #
#################
If you are some sort of fleet-fingered mouse-meister, Yabag might be
a bit too easy for you. Try changing some variables:
run.py:7 Change 'numBalls' to set the total number of balls
(a higher number results in increased difficulty)
run.py:8 Change 'delay' to set the overall speed of the game loop
(a lower value results in increased difficulty)
###############
# 5. Feedback #
###############
Feel free to send any sort of feedback.
You'll surely find the email somewhere on github ;-)
-- Have fun!!