forgot git add *cough*
This commit is contained in:
parent
48b42d42e6
commit
05fb40b7f4
4 changed files with 9 additions and 6 deletions
BIN
gfx/stage1/border.png
Normal file
BIN
gfx/stage1/border.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
|
@ -79,6 +79,7 @@ void draw_fairies() {
|
|||
glPopMatrix();
|
||||
}
|
||||
|
||||
glColor3f(1,1,1);
|
||||
glDisable(GL_TEXTURE_2D);
|
||||
}
|
||||
|
||||
|
|
|
@ -122,6 +122,7 @@ void draw_projectiles() {
|
|||
glColor3f(1,1,1);
|
||||
}
|
||||
|
||||
|
||||
glDisable(GL_TEXTURE_2D);
|
||||
}
|
||||
|
||||
|
|
|
@ -83,12 +83,13 @@ void stage0_draw() {
|
|||
|
||||
void stage0_events() {
|
||||
if(!(global .frames % 100)) {
|
||||
int i;
|
||||
for(i = 0; i < VIEWPORT_W/15; i++)
|
||||
create_projectile(&_projs.ball, i*VIEWPORT_W/15, 0, 90 + i*10, ((Color) {0,0,1}), simple, 2);
|
||||
create_fairy(0, 100, 1, 180, 2, simpleFairy);
|
||||
create_fairy(VIEWPORT_W-1, 10, -1, 180, 3, simpleFairy);
|
||||
create_fairy(VIEWPORT_W-1, 200, -1, 180, 3, simpleFairy);
|
||||
// int i;
|
||||
// for(i = 0; i < VIEWPORT_W/15; i++)
|
||||
// create_projectile(&_projs.ball, i*VIEWPORT_W/15, 0, 90 + i*10, ((Color) {0,0,1}), simple, 2);
|
||||
// create_fairy(0, 100, 1, 180, 2, simpleFairy);
|
||||
// create_fairy(VIEWPORT_W-1, 10, -1, 180, 3, simpleFairy);
|
||||
// create_fairy(VIEWPORT_W-1, 200, -1, 180, 3, simpleFairy);
|
||||
create_projectile(&_projs.ball, VIEWPORT_W/2, 0, 180, ((Color) {0,0,1}), simple, 2);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue