Fix imported BitMap dimension flip
This commit is contained in:
parent
57efe0bea5
commit
3c6dfbfea5
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue