diff options
author | Ibrahn Sahir <ibrahn.sahir@gmail.com> | 2018-11-11 17:32:47 +0000 |
---|---|---|
committer | Ibrahn Sahir <ibrahn.sahir@gmail.com> | 2018-11-11 17:32:47 +0000 |
commit | ed337085cf0a211619688467d7a90222f23eff58 (patch) | |
tree | 41f583103c1117ef70584c220052a296c4a65f0a /editor/plugins/particles_editor_plugin.cpp | |
parent | d16ce4a8edb26fb4730c51405662479f7ebf6617 (diff) |
Fixed various uninitialised member variables in editor plugins.
Diffstat (limited to 'editor/plugins/particles_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/particles_editor_plugin.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/plugins/particles_editor_plugin.cpp b/editor/plugins/particles_editor_plugin.cpp index 6b41946918..f2dfae7a9f 100644 --- a/editor/plugins/particles_editor_plugin.cpp +++ b/editor/plugins/particles_editor_plugin.cpp @@ -453,6 +453,7 @@ void ParticlesEditor::_bind_methods() { ParticlesEditor::ParticlesEditor() { + node = NULL; particles_editor_hb = memnew(HBoxContainer); SpatialEditor::get_singleton()->add_control_to_menu_panel(particles_editor_hb); options = memnew(MenuButton); |