From 895ed2aed7baf1a6e32da39f7e2561973f500344 Mon Sep 17 00:00:00 2001 From: jitspoe Date: Thu, 6 Feb 2020 06:06:05 -0500 Subject: Fix custom w component being uninitialized on CPU particles. (cherry picked from commit 38085f2f6982c491935a434bb45e358dbebe1714) (cherry picked from commit b9c280b73ff6a13ea490d2da0f2728bcef3038dc) --- scene/3d/cpu_particles_3d.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'scene/3d/cpu_particles_3d.cpp') diff --git a/scene/3d/cpu_particles_3d.cpp b/scene/3d/cpu_particles_3d.cpp index 2226b0ed83..2758c0deed 100644 --- a/scene/3d/cpu_particles_3d.cpp +++ b/scene/3d/cpu_particles_3d.cpp @@ -69,6 +69,7 @@ void CPUParticles3D::set_amount(int p_amount) { for (int i = 0; i < p_amount; i++) { w[i].active = false; + w[i].custom[3] = 0.0; // Make sure w component isn't garbage data } } -- cgit v1.2.3