Fixed emitting not initialized correctly in cpu particles 2d/3d

Fixes uninitialized variable caused by PR #32921
This commit is contained in:
PouleyKetchoupp 2019-10-24 21:38:01 +02:00
parent 9008cc486e
commit 1e0f37a70f
2 changed files with 8 additions and 4 deletions

View File

@ -260,8 +260,7 @@ void CPUParticles2D::restart() {
inactive_time = 0;
frame_remainder = 0;
cycle = 0;
set_emitting(true);
emitting = false;
{
int pc = particles.size();
@ -271,6 +270,8 @@ void CPUParticles2D::restart() {
w[i].active = false;
}
}
set_emitting(true);
}
void CPUParticles2D::set_direction(Vector2 p_direction) {
@ -1422,6 +1423,7 @@ CPUParticles2D::CPUParticles2D() {
frame_remainder = 0;
cycle = 0;
redraw = false;
emitting = false;
mesh = VisualServer::get_singleton()->mesh_create();
multimesh = VisualServer::get_singleton()->multimesh_create();

View File

@ -240,8 +240,7 @@ void CPUParticles::restart() {
inactive_time = 0;
frame_remainder = 0;
cycle = 0;
set_emitting(true);
emitting = false;
{
int pc = particles.size();
@ -251,6 +250,8 @@ void CPUParticles::restart() {
w[i].active = false;
}
}
set_emitting(true);
}
void CPUParticles::set_direction(Vector3 p_direction) {
@ -1494,6 +1495,7 @@ CPUParticles::CPUParticles() {
frame_remainder = 0;
cycle = 0;
redraw = false;
emitting = false;
set_notify_transform(true);