Merge pull request #21502 from Web-eWorks/atlasfixes
AtlasTexture fixes, part 2.
This commit is contained in:
commit
c52a3646f1
1 changed files with 10 additions and 10 deletions
|
@ -431,7 +431,7 @@ void Sprite3D::_draw() {
|
|||
|
||||
};
|
||||
|
||||
Vector2 src_tsize = Vector2(texture->get_width(), texture->get_height());
|
||||
Vector2 src_tsize = tsize;
|
||||
|
||||
// Properly setup UVs for impostor textures (AtlasTexture).
|
||||
Ref<AtlasTexture> atlas_tex = texture;
|
||||
|
@ -441,10 +441,10 @@ void Sprite3D::_draw() {
|
|||
}
|
||||
|
||||
Vector2 uvs[4] = {
|
||||
final_src_rect.position / tsize,
|
||||
(final_src_rect.position + Vector2(final_src_rect.size.x, 0)) / tsize,
|
||||
(final_src_rect.position + final_src_rect.size) / tsize,
|
||||
(final_src_rect.position + Vector2(0, final_src_rect.size.y)) / tsize,
|
||||
final_src_rect.position / src_tsize,
|
||||
(final_src_rect.position + Vector2(final_src_rect.size.x, 0)) / src_tsize,
|
||||
(final_src_rect.position + final_src_rect.size) / src_tsize,
|
||||
(final_src_rect.position + Vector2(0, final_src_rect.size.y)) / src_tsize,
|
||||
};
|
||||
|
||||
if (is_flipped_h()) {
|
||||
|
@ -731,7 +731,7 @@ void AnimatedSprite3D::_draw() {
|
|||
|
||||
};
|
||||
|
||||
Vector2 src_tsize = Vector2(texture->get_width(), texture->get_height());
|
||||
Vector2 src_tsize = tsize;
|
||||
|
||||
// Properly setup UVs for impostor textures (AtlasTexture).
|
||||
Ref<AtlasTexture> atlas_tex = texture;
|
||||
|
@ -741,10 +741,10 @@ void AnimatedSprite3D::_draw() {
|
|||
}
|
||||
|
||||
Vector2 uvs[4] = {
|
||||
final_src_rect.position / tsize,
|
||||
(final_src_rect.position + Vector2(final_src_rect.size.x, 0)) / tsize,
|
||||
(final_src_rect.position + final_src_rect.size) / tsize,
|
||||
(final_src_rect.position + Vector2(0, final_src_rect.size.y)) / tsize,
|
||||
final_src_rect.position / src_tsize,
|
||||
(final_src_rect.position + Vector2(final_src_rect.size.x, 0)) / src_tsize,
|
||||
(final_src_rect.position + final_src_rect.size) / src_tsize,
|
||||
(final_src_rect.position + Vector2(0, final_src_rect.size.y)) / src_tsize,
|
||||
};
|
||||
|
||||
if (is_flipped_h()) {
|
||||
|
|
Loading…
Reference in a new issue