Merge pull request #58706 from timothyqiu/property-i18n
This commit is contained in:
commit
7e4a8d3ab3
8 changed files with 292 additions and 85 deletions
|
|
@ -90,6 +90,7 @@
|
|||
#include "editor/editor_paths.h"
|
||||
#include "editor/editor_plugin.h"
|
||||
#include "editor/editor_properties.h"
|
||||
#include "editor/editor_property_name_processor.h"
|
||||
#include "editor/editor_resource_picker.h"
|
||||
#include "editor/editor_resource_preview.h"
|
||||
#include "editor/editor_run.h"
|
||||
|
|
@ -5803,6 +5804,9 @@ void EditorNode::notify_settings_changed() {
|
|||
}
|
||||
|
||||
EditorNode::EditorNode() {
|
||||
EditorPropertyNameProcessor *epnp = memnew(EditorPropertyNameProcessor);
|
||||
add_child(epnp);
|
||||
|
||||
Input::get_singleton()->set_use_accumulated_input(true);
|
||||
Resource::_get_local_scene_func = _resource_get_edited_scene;
|
||||
|
||||
|
|
@ -6025,6 +6029,7 @@ EditorNode::EditorNode() {
|
|||
EDITOR_DEF("interface/editor/save_on_focus_loss", false);
|
||||
EDITOR_DEF("interface/editor/show_update_spinner", false);
|
||||
EDITOR_DEF("interface/editor/update_continuously", false);
|
||||
EDITOR_DEF("interface/editor/translate_properties", true);
|
||||
EDITOR_DEF_RST("interface/scene_tabs/restore_scenes_on_load", true);
|
||||
EDITOR_DEF_RST("interface/inspector/capitalize_properties", true);
|
||||
EDITOR_DEF_RST("interface/inspector/default_float_step", 0.001);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue