diff options
author | darth negative hunter <73083466+thenegativehunter2@users.noreply.github.com> | 2021-09-17 01:11:26 +0430 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-17 01:11:26 +0430 |
commit | 1cd473596a28f104e6786dd0a8be1797b1790f1d (patch) | |
tree | 6db1d26db97425382f268437fc4b46c94b76efe3 | |
parent | 24066b3c7ac9277348ccc2aabb7235cde1db88bd (diff) |
Update editor/import/resource_importer_layered_texture.cpp
Co-authored-by: RĂ©mi Verschelde <rverschelde@gmail.com>
-rw-r--r-- | editor/import/resource_importer_layered_texture.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/import/resource_importer_layered_texture.cpp b/editor/import/resource_importer_layered_texture.cpp index eb44f13620..3a2ddab3f4 100644 --- a/editor/import/resource_importer_layered_texture.cpp +++ b/editor/import/resource_importer_layered_texture.cpp @@ -138,7 +138,7 @@ void ResourceImporterLayeredTexture::get_import_options(List<ImportOption> *r_op r_options->push_back(ImportOption(PropertyInfo(Variant::FLOAT, "compress/lossy_quality", PROPERTY_HINT_RANGE, "0,1,0.01"), 0.7)); r_options->push_back(ImportOption(PropertyInfo(Variant::INT, "compress/hdr_compression", PROPERTY_HINT_ENUM, "Disabled,Opaque Only,Always"), 1)); r_options->push_back(ImportOption(PropertyInfo(Variant::INT, "compress/bptc_ldr", PROPERTY_HINT_ENUM, "Disabled,Enabled,RGBA Only"), 0)); - r_options->push_back(ImportOption(PropertyInfo(Variant::INT, "compress/channel_pack", PROPERTY_HINT_ENUM, "sRGB Friendly,Optimized,Normal Map (RG channels"), 0)); + r_options->push_back(ImportOption(PropertyInfo(Variant::INT, "compress/channel_pack", PROPERTY_HINT_ENUM, "sRGB Friendly,Optimized,Normal Map (RG Channels)"), 0)); r_options->push_back(ImportOption(PropertyInfo(Variant::BOOL, "mipmaps/generate"), true)); r_options->push_back(ImportOption(PropertyInfo(Variant::INT, "mipmaps/limit", PROPERTY_HINT_RANGE, "-1,256"), -1)); |