diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2015-10-07 12:29:55 -0400 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2015-10-07 12:29:55 -0400 |
commit | 281da1f81b1eef9e05e881e12d986b6b45ce8696 (patch) | |
tree | 82eba850f385733baeafa5c2dbecb33e71ec7d33 | |
parent | 40efc2db79c205d122ca9557c9cd0d5679a37446 (diff) |
Fixed jumping animation
-rw-r--r-- | assets/house1.png | bin | 1483 -> 788 bytes | |||
-rw-r--r-- | out/entities.o | bin | 93560 -> 93600 bytes | |||
-rw-r--r-- | out/inventory.o | bin | 3156 -> 3156 bytes | |||
-rw-r--r-- | out/ui.o | bin | 9844 -> 9844 bytes | |||
-rw-r--r-- | out/world.o | bin | 37540 -> 38716 bytes | |||
-rw-r--r-- | src/entities.cpp | 9 |
6 files changed, 7 insertions, 2 deletions
diff --git a/assets/house1.png b/assets/house1.png Binary files differindex 2f5034b..2022992 100644 --- a/assets/house1.png +++ b/assets/house1.png diff --git a/out/entities.o b/out/entities.o Binary files differindex db0a4aa..69472f4 100644 --- a/out/entities.o +++ b/out/entities.o diff --git a/out/inventory.o b/out/inventory.o Binary files differBinary files differindex 559aff1..d88bf53 100644 --- a/out/inventory.o +++ b/out/inventory.o diff --git a/out/world.o b/out/world.o Binary files differindex 6f79983..4997e5b 100644 --- a/out/world.o +++ b/out/world.o diff --git a/src/entities.cpp b/src/entities.cpp index 13c042b..127adae 100644 --- a/src/entities.cpp +++ b/src/entities.cpp @@ -53,7 +53,10 @@ void Entity::draw(void){ //draws the entities texState-=1; if(texState==0)up=true; } - }if(vel.x != 0){ + }if(ground == 0){ + glBindTexture(GL_TEXTURE_2D, texture[1]); + } + else if(vel.x != 0){ switch(texState){ case 0: glBindTexture(GL_TEXTURE_2D,texture[1]); @@ -65,7 +68,9 @@ void Entity::draw(void){ //draws the entities glBindTexture(GL_TEXTURE_2D,texture[2]); break; } - }else glBindTexture(GL_TEXTURE_2D,texture[0]); + }else{ + glBindTexture(GL_TEXTURE_2D,texture[0]); + } }else{ glBindTexture(GL_TEXTURE_2D,texture[0]); } |