Fix imported BitMap dimension flip

This commit is contained in:
Poommetee Ketson 2018-01-08 16:43:47 +07:00
parent 57efe0bea5
commit 3c6dfbfea5

View file

@ -77,7 +77,7 @@ Error ResourceImporterBitMap::import(const String &p_source_file, const String &
bit = c.a > threshold;
}
bitmap->set_bit(Vector2(i, j), bit);
bitmap->set_bit(Vector2(j, i), bit);
}
}