Project as is
BIN
res/hitboxes/stages/mountain.shb
Executable file
BIN
res/img/characters/blue stick/fall/blue stick fall 1.png
Executable file
After Width: | Height: | Size: 319 B |
BIN
res/img/characters/blue stick/fall/blue stick fall 2.png
Executable file
After Width: | Height: | Size: 342 B |
BIN
res/img/characters/blue stick/fall/blue stick fall 3.png
Executable file
After Width: | Height: | Size: 339 B |
BIN
res/img/characters/blue stick/fall/blue stick fall 4.png
Executable file
After Width: | Height: | Size: 342 B |
BIN
res/img/characters/blue stick/fall/blue stick fall 5.png
Executable file
After Width: | Height: | Size: 328 B |
BIN
res/img/characters/blue stick/fall/blue stick fall 6.png
Executable file
After Width: | Height: | Size: 320 B |
BIN
res/img/characters/blue stick/idle/blue stick idle 1.png
Executable file
After Width: | Height: | Size: 208 B |
BIN
res/img/characters/blue stick/idle/blue stick idle 2.png
Executable file
After Width: | Height: | Size: 202 B |
BIN
res/img/characters/blue stick/idle/blue stick idle 3.png
Executable file
After Width: | Height: | Size: 203 B |
BIN
res/img/characters/blue stick/idle/blue stick idle 4.png
Executable file
After Width: | Height: | Size: 198 B |
BIN
res/img/characters/blue stick/idle/blue stick idle 5.png
Executable file
After Width: | Height: | Size: 203 B |
BIN
res/img/characters/blue stick/idle/blue stick idle 6.png
Executable file
After Width: | Height: | Size: 202 B |
BIN
res/img/characters/blue stick/idle/blue stick idle 7.png
Executable file
After Width: | Height: | Size: 208 B |
BIN
res/img/characters/blue stick/idle/blue stick idle 8.png
Executable file
After Width: | Height: | Size: 199 B |
BIN
res/img/characters/blue stick/jump/blue stick jump 1.png
Executable file
After Width: | Height: | Size: 334 B |
BIN
res/img/characters/blue stick/jump/blue stick jump 2.png
Executable file
After Width: | Height: | Size: 350 B |
BIN
res/img/characters/blue stick/jump/blue stick jump 3.png
Executable file
After Width: | Height: | Size: 353 B |
BIN
res/img/characters/blue stick/jump/blue stick jump 4.png
Executable file
After Width: | Height: | Size: 350 B |
BIN
res/img/characters/blue stick/jump/blue stick jump 5.png
Executable file
After Width: | Height: | Size: 336 B |
BIN
res/img/characters/blue stick/jump/blue stick jump 6.png
Executable file
After Width: | Height: | Size: 328 B |
BIN
res/img/characters/blue stick/run/blue stick run 1.png
Executable file
After Width: | Height: | Size: 288 B |
BIN
res/img/characters/blue stick/run/blue stick run 2.png
Executable file
After Width: | Height: | Size: 300 B |
BIN
res/img/characters/blue stick/run/blue stick run 3.png
Executable file
After Width: | Height: | Size: 303 B |
BIN
res/img/characters/blue stick/run/blue stick run 4.png
Executable file
After Width: | Height: | Size: 308 B |
BIN
res/img/characters/blue stick/run/blue stick run 5.png
Executable file
After Width: | Height: | Size: 292 B |
BIN
res/img/characters/blue stick/walk/blue stick walk 1.png
Executable file
After Width: | Height: | Size: 237 B |
BIN
res/img/characters/blue stick/walk/blue stick walk 2.png
Executable file
After Width: | Height: | Size: 245 B |
BIN
res/img/characters/blue stick/walk/blue stick walk 3.png
Executable file
After Width: | Height: | Size: 249 B |
BIN
res/img/characters/blue stick/walk/blue stick walk 4.png
Executable file
After Width: | Height: | Size: 251 B |
BIN
res/img/characters/blue stick/walk/blue stick walk 5.png
Executable file
After Width: | Height: | Size: 254 B |
BIN
res/img/characters/blue stick/walk/blue stick walk 6.png
Executable file
After Width: | Height: | Size: 252 B |
BIN
res/img/characters/blue stick/walk/blue stick walk 7.png
Executable file
After Width: | Height: | Size: 254 B |
BIN
res/img/characters/blue stick/walk/blue stick walk 8.png
Executable file
After Width: | Height: | Size: 244 B |
BIN
res/img/characters/blue stick/walk/blue stick walk 9.png
Executable file
After Width: | Height: | Size: 236 B |
BIN
res/img/stages/mountain/mountain 1.png
Executable file
After Width: | Height: | Size: 4.5 KiB |
9
res/shaders/default/default.fs
Executable file
|
@ -0,0 +1,9 @@
|
|||
#version 450
|
||||
|
||||
uniform sampler2D sampler;
|
||||
|
||||
in vec2 textureCoords;
|
||||
|
||||
void main() {
|
||||
gl_FragColor = texture2D(sampler, textureCoords);
|
||||
}
|
13
res/shaders/default/default.vs
Executable file
|
@ -0,0 +1,13 @@
|
|||
#version 450
|
||||
|
||||
uniform mat4 projection;
|
||||
|
||||
in vec3 vertices;
|
||||
in vec2 texCoords;
|
||||
|
||||
out vec2 textureCoords;
|
||||
|
||||
void main() {
|
||||
textureCoords = texCoords;
|
||||
gl_Position = projection * vec4(vertices, 1);
|
||||
}
|
5
res/shaders/shapes/shapes.fs
Executable file
|
@ -0,0 +1,5 @@
|
|||
#version 450
|
||||
|
||||
void main() {
|
||||
gl_FragColor = vec4(0, 1, 1, 0.5);
|
||||
}
|
9
res/shaders/shapes/shapes.vs
Executable file
|
@ -0,0 +1,9 @@
|
|||
#version 450
|
||||
|
||||
uniform mat4 projection;
|
||||
|
||||
in vec3 vertices;
|
||||
|
||||
void main() {
|
||||
gl_Position = projection * vec4(vertices, 1);
|
||||
}
|