Merge pull request #59923 from pfertyk/issue-59915-noise-generate-texture-crash

Fix `NoiseTexture._generate_texture` crash
This commit is contained in:
Rémi Verschelde 2022-04-05 23:08:30 +02:00 committed by GitHub
commit d405761ee7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -101,6 +101,7 @@ class Noise : public Resource {
on Source it's translated to
corner of Q1/s3 unless the ALT_XY modulo moves it to Q4
*/
ERR_FAIL_COND_V(p_blend_skirt < 0, Ref<Image>());
int skirt_width = MAX(1, p_width * p_blend_skirt);
int skirt_height = MAX(1, p_height * p_blend_skirt);