diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-10-07 17:39:52 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-10-07 17:39:52 -0400 |
commit | 1b63e00b6b08133f5ee37ed90043eee0f67942fd (patch) | |
tree | 686443bdea7368eeaa98c1ea8347a491200ff8d7 /src/world.hpp | |
parent | 9cef5e64ddd1ef20369b25cc19b1980084ebaefe (diff) |
Added script conversion code, can now convert table to vec2, vec3 and vec4
Diffstat (limited to 'src/world.hpp')
-rw-r--r-- | src/world.hpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/world.hpp b/src/world.hpp index 6776e2c..66d9e3f 100644 --- a/src/world.hpp +++ b/src/world.hpp @@ -94,16 +94,16 @@ public: &width, &height, &channels, SOIL_LOAD_RGBA); - for (int w = 0; w < width*4; w+=4) { + for (int w = 0; w < width*channels; w+=channels) { hitbox.push_back(std::vector<bool>(height)); for (int h = 0; h < height; h++) { - unsigned char* c = &box[(w) + (width*h*4)]; - // we want to read the alpha - if (c[3]) { - hitbox[w/4][height-h] = true; + unsigned char* c = &box[(w) + (width*h*channels)]; + // we want to read the last channel (alpha) + if (c[channels-1]) { + hitbox[w/channels][height-h] = true; } else - hitbox[w/4][height-h] = false; + hitbox[w/channels][height-h] = false; } } |