diff options
author | qarmin <mikrutrafal54@gmail.com> | 2020-04-18 11:00:51 +0200 |
---|---|---|
committer | qarmin <mikrutrafal54@gmail.com> | 2020-04-18 11:00:51 +0200 |
commit | 559bc3ca87042d477331ecd32f1881ce8d0b5d91 (patch) | |
tree | 7039216faa9c9261f60bcc726ac3453257dd9127 /editor/plugins/mesh_editor_plugin.cpp | |
parent | d817be92c2d9edce842ab37ab13117743f8a3bee (diff) | |
download | redot-engine-559bc3ca87042d477331ecd32f1881ce8d0b5d91.tar.gz |
Change non-existent World to World3D
Diffstat (limited to 'editor/plugins/mesh_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/mesh_editor_plugin.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/plugins/mesh_editor_plugin.cpp b/editor/plugins/mesh_editor_plugin.cpp index 5e657c3b71..3e603fa499 100644 --- a/editor/plugins/mesh_editor_plugin.cpp +++ b/editor/plugins/mesh_editor_plugin.cpp @@ -116,9 +116,9 @@ void MeshEditor::_bind_methods() { MeshEditor::MeshEditor() { viewport = memnew(SubViewport); - Ref<World3D> world; - world.instance(); - viewport->set_world(world); //use own world + Ref<World3D> world_3d; + world_3d.instance(); + viewport->set_world_3d(world_3d); //use own world add_child(viewport); viewport->set_disable_input(true); viewport->set_msaa(Viewport::MSAA_2X); |