1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-31 18:41:20 +00:00

Fix NoiseTexture._generate_texture crash

Fixes #59915 .
This commit is contained in:
Paweł Fertyk
2022-04-05 22:24:58 +02:00
parent 77843355a0
commit 79b4844be5

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);