public
Description: Very-high-level game programming framework, built on Rubygame & Ruby-OpenGL
Homepage: http://blog.rubygame.org/rebirth
Clone URL: git://github.com/jacius/rebirth.git
rebirth / ROADMAP
100644 71 lines (33 sloc) 0.989 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
59
60
61
62
63
64
65
66
67
68
69
70
71
 
 
  ROADMAP
  
  
  (View)
 
    - Demo: Empty view, nothing displayed. Quits after 10 seconds.
 
    - View class
 
  
  (Keyboard events)
  
    - Demo: Same as above, but quits when Q key pressed and released.
  
    - KeyPressed event class
    - KeyReleased event class
    - EventManager class
  
  
  (Box)
  
    - Demo: Same, but displays a solid white rectangle.
 
    - Shape class
    - Box class
 
 
  (Camera)
 
    - Demo: Same. (Nonvisible changes only.)
 
    - Camera class
 
  
  (Game Object)
  
    - Demo: Same. (Nonvisible changes only.)
  
    - GameObject class
 
  
  (Circle)
  
    - Demo: Same, but also displays a solid white circle.
  
    - Circle class
 
  
  (Color)
 
    - Demo: Same, but each shape is a different color.
 
    - Color classes
    - Shape style (solid)
 
  
  (Line)
  
    - Demo: Same, but also displays a colored line.
  
    - Line class
    - Shape style (line)
  
  (World)
  
    - Demo: Same. (Nonvisible changes only.)
  
    - World class.