space_invaders
space_invaders copied to clipboard
A simple space invaders "clone" built using OpenGL 3 and GLFW.
Added some fixes so aliens don't wander off screen and stray bullets don't kill you or the new aliens Also on a re-population(level change) the animation speed was still the...
Running on Linux, I was experiencing the application crashing with a segmentation fault. This would occur when executing the call: `glGenVertexArrays(1, &fullscreen_triangle_vao);` To fix this, I needed to set the...
I made a fork of the space invaders code [here](https://github.com/xyproto/spaceinvaders), but I am unsure if this is okay, since a license i missing. What is the license for this project?
``` diff --git a/make.sh b/make.sh index 4f626e8..c935c9f 100755 --- a/make.sh +++ b/make.sh @@ -1,2 +1,2 @@ #!/bin/bash -g++ -Wall -std=c++11 -O0 -g -o main -lglfw -lglew -framework OpenGL main.cpp +g++...