diff --git a/doc/classes/TextureProgress.xml b/doc/classes/TextureProgress.xml index 75e0a085f88a..9c24e37a6ee3 100644 --- a/doc/classes/TextureProgress.xml +++ b/doc/classes/TextureProgress.xml @@ -40,6 +40,7 @@ Starting angle for the fill of [member texture_progress] if [member fill_mode] is [constant FILL_CLOCKWISE] or [constant FILL_COUNTER_CLOCKWISE]. When the node's [code]value[/code] is equal to its [code]min_value[/code], the texture doesn't show up at all. When the [code]value[/code] increases, the texture fills and tends towards [member radial_fill_degrees]. + [b]Note:[/b] [member radial_initial_angle] is wrapped between [code]0[/code] and [code]360[/code] degrees (inclusive). The height of the 9-patch's bottom row. A margin of 16 means the 9-slice's bottom corners and side will have a height of 16 pixels. You can set all 4 margin values individually to create panels with non-uniform borders. diff --git a/scene/gui/texture_progress.cpp b/scene/gui/texture_progress.cpp index 6afce7862ba9..8431a27e6d7b 100644 --- a/scene/gui/texture_progress.cpp +++ b/scene/gui/texture_progress.cpp @@ -31,6 +31,7 @@ #include "texture_progress.h" #include "core/engine.h" +#include "math.h" void TextureProgress::set_under_texture(const Ref &p_texture) { under = p_texture; @@ -577,12 +578,12 @@ int TextureProgress::get_fill_mode() { } void TextureProgress::set_radial_initial_angle(float p_angle) { - while (p_angle > 360) { - p_angle -= 360; - } - while (p_angle < 0) { - p_angle += 360; + ERR_FAIL_COND_MSG(!isfinite(p_angle), "Angle is non-finite."); + + if (p_angle < 0.0 || p_angle > 360.0) { + p_angle = Math::fposmod(p_angle, 360.0f); } + rad_init_angle = p_angle; update(); }