diff options
| author | Juan Linietsky | 2016-12-23 00:37:38 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2016-12-23 00:37:38 -0300 |
| commit | 4e729f38e02274afc91319d8dc9d2dfea9e9438e (patch) | |
| tree | 48fa8b974220e1e1de3edf32c15906af18d98fe0 /tools/editor/editor_node.cpp | |
| parent | f9603d82365823938129e68823a19739a3dd0b23 (diff) | |
| download | godot-4e729f38e02274afc91319d8dc9d2dfea9e9438e.tar.gz godot-4e729f38e02274afc91319d8dc9d2dfea9e9438e.tar.zst godot-4e729f38e02274afc91319d8dc9d2dfea9e9438e.zip | |
baking now shows a proper button, and bakes can be saved.
Diffstat (limited to 'tools/editor/editor_node.cpp')
| -rw-r--r-- | tools/editor/editor_node.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/editor/editor_node.cpp b/tools/editor/editor_node.cpp index 99c2b468f..8ec10756c 100644 --- a/tools/editor/editor_node.cpp +++ b/tools/editor/editor_node.cpp @@ -99,6 +99,7 @@ #include "plugins/light_occluder_2d_editor_plugin.h" #include "plugins/color_ramp_editor_plugin.h" #include "plugins/collision_shape_2d_editor_plugin.h" +#include "plugins/gi_probe_editor_plugin.h" #include "main/input_default.h" // end #include "tools/editor/io_plugins/editor_texture_import_plugin.h" @@ -5361,6 +5362,8 @@ void EditorNode::_bind_methods() { EditorNode::EditorNode() { + VisualServer::get_singleton()->textures_keep_original(true); + EditorHelp::generate_doc(); //before any editor classes are crated SceneState::set_disable_placeholders(true); editor_initialize_certificates(); //for asset sharing @@ -6567,6 +6570,7 @@ EditorNode::EditorNode() { add_editor_plugin( memnew( SpriteFramesEditorPlugin(this) ) ); add_editor_plugin( memnew( TextureRegionEditorPlugin(this) ) ); add_editor_plugin( memnew( Particles2DEditorPlugin(this) ) ); + add_editor_plugin( memnew( GIProbeEditorPlugin(this) ) ); add_editor_plugin( memnew( Path2DEditorPlugin(this) ) ); // add_editor_plugin( memnew( PathEditorPlugin(this) ) ); //add_editor_plugin( memnew( BakedLightEditorPlugin(this) ) ); |
