diff options
author | Ibrahn Sahir <ibrahn.sahir@gmail.com> | 2018-01-27 20:14:08 +0000 |
---|---|---|
committer | Ibrahn Sahir <ibrahn.sahir@gmail.com> | 2018-04-08 19:56:58 +0100 |
commit | 9db767d07631723779f1831f892f0f3e40ed8998 (patch) | |
tree | 6ef3e8e04c168f1d32a9a7702d8ae3dac0f4a05d /scene | |
parent | 9acc199bf87db512ea330d62dabacda4f31de6ff (diff) |
Allow use of frames in sprites with texture region enabled.
If texture region is enabled on a sprite, Hframes and Vframes will now
divide the selected region into frames.
Diffstat (limited to 'scene')
-rw-r--r-- | scene/2d/sprite.cpp | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/scene/2d/sprite.cpp b/scene/2d/sprite.cpp index 67f016ae79..2a119c3952 100644 --- a/scene/2d/sprite.cpp +++ b/scene/2d/sprite.cpp @@ -60,31 +60,31 @@ bool Sprite::_edit_use_pivot() 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; @@ -343,13 +343,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; |