diff options
author | K. S. Ernest (iFire) Lee <fire@users.noreply.github.com> | 2021-11-09 10:55:15 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-09 10:55:15 -0800 |
commit | 081c1ceda4f6e2dbc7c010611e9ec836106a967d (patch) | |
tree | 27442da904d72aabb7f614808988c2a3d4f7a00c | |
parent | eb98fd94421b124a5848d7ee6c7ead4337222c6c (diff) | |
parent | f4204ac8e0d55d47de75afa07ef0170500f434bb (diff) |
Merge pull request #51341 from V-Sekai/fps-30
Default to 30 animation fps for better quality.
-rw-r--r-- | editor/import/resource_importer_scene.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/import/resource_importer_scene.cpp b/editor/import/resource_importer_scene.cpp index 5efb08b95d..dfb3f47f8e 100644 --- a/editor/import/resource_importer_scene.cpp +++ b/editor/import/resource_importer_scene.cpp @@ -1428,7 +1428,7 @@ void ResourceImporterScene::get_import_options(List<ImportOption> *r_options, in r_options->push_back(ImportOption(PropertyInfo(Variant::FLOAT, "meshes/lightmap_texel_size", PROPERTY_HINT_RANGE, "0.001,100,0.001"), 0.1)); r_options->push_back(ImportOption(PropertyInfo(Variant::BOOL, "skins/use_named_skins"), true)); r_options->push_back(ImportOption(PropertyInfo(Variant::BOOL, "animation/import"), true)); - r_options->push_back(ImportOption(PropertyInfo(Variant::FLOAT, "animation/fps", PROPERTY_HINT_RANGE, "1,120,1"), 15)); + r_options->push_back(ImportOption(PropertyInfo(Variant::FLOAT, "animation/fps", PROPERTY_HINT_RANGE, "1,120,1"), 30)); r_options->push_back(ImportOption(PropertyInfo(Variant::STRING, "import_script/path", PROPERTY_HINT_FILE, script_ext_hint), "")); r_options->push_back(ImportOption(PropertyInfo(Variant::DICTIONARY, "_subresources", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_NO_EDITOR), Dictionary())); |