diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-10-13 08:51:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-13 08:51:38 +0200 |
commit | e97ada64135dcdf81ac817ded43c810b3f6883e5 (patch) | |
tree | 1aaad984deba78c650696f376c7cee47cf32db4b /scene/3d | |
parent | 750d75dc4caec8f54e1b9faed09cad65c7fbfcae (diff) | |
parent | 6106fd88d415c2889d3b64dcf1b0762eda2df562 (diff) |
Merge pull request #12064 from endragor/junk-logs
Remove junk output
[ci skip]
Diffstat (limited to 'scene/3d')
-rw-r--r-- | scene/3d/particles.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/scene/3d/particles.cpp b/scene/3d/particles.cpp index 80c706898d..73749cacb3 100644 --- a/scene/3d/particles.cpp +++ b/scene/3d/particles.cpp @@ -462,8 +462,6 @@ void ParticlesMaterial::finish_shaders() { void ParticlesMaterial::_update_shader() { - print_line("updating shader"); - dirty_materials.remove(&element); MaterialKey mk = _compute_key(); @@ -913,9 +911,7 @@ void ParticlesMaterial::_queue_shader_change() { if (material_mutex) material_mutex->lock(); - print_line("queuing change"); if (!element.in_list()) { - print_line("not in list, adding"); dirty_materials.add(&element); } |