diff options
| author | Hiroshi Ogawa | 2017-10-12 20:12:50 +0900 |
|---|---|---|
| committer | Hiroshi Ogawa | 2017-10-12 21:30:19 +0900 |
| commit | d777681882f119cf760a504d86ccdf80df75d250 (patch) | |
| tree | 211341bda903854e52154b90c98047d35619080a /editor/editor_node.cpp | |
| parent | 409e58e67abde4e7af6e43b32c23338e119377fb (diff) | |
| download | godot-d777681882f119cf760a504d86ccdf80df75d250.tar.gz godot-d777681882f119cf760a504d86ccdf80df75d250.tar.zst godot-d777681882f119cf760a504d86ccdf80df75d250.zip | |
Diffstat (limited to 'editor/editor_node.cpp')
| -rw-r--r-- | editor/editor_node.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index ff415c83f..e36fc243f 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -5525,6 +5525,10 @@ EditorNode::EditorNode() { Ref<SpatialMaterialConversionPlugin> spatial_mat_convert; spatial_mat_convert.instance(); resource_conversion_plugins.push_back(spatial_mat_convert); + + Ref<ParticlesMaterialConversionPlugin> particles_mat_convert; + particles_mat_convert.instance(); + resource_conversion_plugins.push_back(particles_mat_convert); } circle_step_msec = OS::get_singleton()->get_ticks_msec(); circle_step_frame = Engine::get_singleton()->get_frames_drawn(); |
