Revert "Fix particles emitting at old location"

This commit is contained in:
Rémi Verschelde 2021-12-07 10:52:39 +01:00 committed by GitHub
parent 71d8ccbe9e
commit ee1877e63e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6142,9 +6142,6 @@ void RasterizerStorageGLES3::particles_set_emitting(RID p_particles, bool p_emit
Particles *particles = particles_owner.getornull(p_particles);
ERR_FAIL_COND(!particles);
if (p_emitting && !particles->emitting) {
particles_request_process(p_particles);
}
particles->emitting = p_emitting;
}