Skip to content

Commit

Permalink
Merge pull request #16122 from ibrahn/sprite-region-with-frames
Browse files Browse the repository at this point in the history
Allow use of frames in sprites with texture region enabled.
  • Loading branch information
reduz authored May 7, 2018
2 parents 299d8a8 + 9db767d commit 9b1fdad
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions scene/2d/sprite.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,31 +68,31 @@ bool Sprite::_edit_use_rect() const {

void Sprite::_get_rects(Rect2 &r_src_rect, Rect2 &r_dst_rect, bool &r_filter_clip) const {

Size2 s;
r_filter_clip = false;
Rect2 base_rect;

if (region) {

s = region_rect.size;
r_src_rect = region_rect;
r_filter_clip = region_filter_clip;
base_rect = region_rect;
} else {
s = Size2(texture->get_size());
s = s / Size2(hframes, vframes);

r_src_rect.size = s;
r_src_rect.position.x = float(frame % hframes) * s.x;
r_src_rect.position.y = float(frame / hframes) * s.y;
r_filter_clip = false;
base_rect = Rect2(0, 0, texture->get_width(), texture->get_height());
}

Point2 ofs = offset;
Size2 frame_size = base_rect.size / Size2(hframes, vframes);
Point2 frame_offset = Point2(frame % hframes, frame / hframes);
frame_offset *= frame_size;

r_src_rect.size = frame_size;
r_src_rect.position = base_rect.position + frame_offset;

Point2 dest_offset = offset;
if (centered)
ofs -= s / 2;
dest_offset -= frame_size / 2;
if (Engine::get_singleton()->get_use_pixel_snap()) {
ofs = ofs.floor();
dest_offset = dest_offset.floor();
}

r_dst_rect = Rect2(ofs, s);
r_dst_rect = Rect2(dest_offset, frame_size);

if (hflip)
r_dst_rect.size.x = -r_dst_rect.size.x;
Expand Down Expand Up @@ -375,13 +375,13 @@ Rect2 Sprite::get_rect() const {
Size2i s;

if (region) {

s = region_rect.size;
} else {
s = texture->get_size();
s = s / Point2(hframes, vframes);
}

s = s / Point2(hframes, vframes);

Point2 ofs = offset;
if (centered)
ofs -= s / 2;
Expand Down

0 comments on commit 9b1fdad

Please sign in to comment.