diff options
author | Marc Gilleron <marc.gilleron@gmail.com> | 2018-02-25 01:48:37 +0100 |
---|---|---|
committer | Marc Gilleron <marc.gilleron@gmail.com> | 2018-02-25 01:49:10 +0100 |
commit | d2fae5c9a6350bc8007fdc28245f27911d79cd8b (patch) | |
tree | d4f4ff9d8d57edf94007941ce4c804019eb5d012 /scene/2d/line_2d.cpp | |
parent | 71602c7491552baafd169e5e3cab9ff97a968951 (diff) | |
download | redot-engine-d2fae5c9a6350bc8007fdc28245f27911d79cd8b.tar.gz |
Fix Line2D tile mode for non-square textures
Diffstat (limited to 'scene/2d/line_2d.cpp')
-rw-r--r-- | scene/2d/line_2d.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/scene/2d/line_2d.cpp b/scene/2d/line_2d.cpp index f0ab9652b4..ba4a5c5571 100644 --- a/scene/2d/line_2d.cpp +++ b/scene/2d/line_2d.cpp @@ -252,12 +252,15 @@ void Line2D::_draw() { lb.sharp_limit = _sharp_limit; lb.width = _width; - lb.build(); - RID texture_rid; - if (_texture.is_valid()) + if (_texture.is_valid()) { texture_rid = (**_texture).get_rid(); + lb.tile_aspect = _texture->get_size().aspect(); + } + + lb.build(); + VS::get_singleton()->canvas_item_add_triangle_array( get_canvas_item(), lb.indices, |