diff options
| author | volzhs | 2016-08-28 16:43:00 +0900 |
|---|---|---|
| committer | volzhs | 2016-08-28 20:25:35 +0900 |
| commit | 85f373691ffe1f1a3080435fd378720615068fae (patch) | |
| tree | f8d3c728d4cce9d2ab0984b2b4a142b3679e8a90 | |
| parent | 449ad2b37a1aeb49029b500f4cf8471ce25f3d1f (diff) | |
| download | godot-85f373691ffe1f1a3080435fd378720615068fae.tar.gz godot-85f373691ffe1f1a3080435fd378720615068fae.tar.zst godot-85f373691ffe1f1a3080435fd378720615068fae.zip | |
check "disable_filter" option for backward compatibility
| -rw-r--r-- | tools/editor/io_plugins/editor_font_import_plugin.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/editor/io_plugins/editor_font_import_plugin.cpp b/tools/editor/io_plugins/editor_font_import_plugin.cpp index 888186192..df3741f0d 100644 --- a/tools/editor/io_plugins/editor_font_import_plugin.cpp +++ b/tools/editor/io_plugins/editor_font_import_plugin.cpp @@ -1592,6 +1592,9 @@ Ref<BitmapFont> EditorFontImportPlugin::generate_font(const Ref<ResourceImportMe int top_space = from->get_option("extra_space/top"); int bottom_space = from->get_option("extra_space/bottom"); bool enable_filter = from->get_option("advanced/enable_filter"); + if (from->has_option("advanced/disable_filter")){ // this is a compatibility check for a deprecated option + enable_filter = !from->get_option("advanced/disable_filter"); + } Ref<BitmapFont> font; |
