UI: Improve labels of asset browser parameters

In new asset browser popover "Import Settings" there are new options
for instancing. Naming of properties wasn't clear enough at a glance, and
it reuses terms "Link" and "Append" which are used way too frequently and
can be mistaken for something else. This commit clarifies what parameters
do in labels.

See Images attached in PR description.

Pull Request: https://projects.blender.org/blender/blender/pulls/137295
This commit is contained in:
Nika Kutsniashvili
2025-04-18 06:04:44 +02:00
committed by Pratik Borhade
parent 234a4ce3a0
commit 47f80eb158

View File

@@ -733,8 +733,8 @@ class ASSETBROWSER_PT_import_settings(asset_utils.AssetBrowserPanel, Panel):
layout.prop(params, "import_method", text="Import Method")
col = layout.column(heading="Instance Collections")
col.prop(params, "instance_collections_on_link", text="Link")
col.prop(params, "instance_collections_on_append", text="Append")
col.prop(params, "instance_collections_on_link", text="When Linking")
col.prop(params, "instance_collections_on_append", text="When Appendind")
class ASSETBROWSER_PT_metadata(asset_utils.AssetBrowserPanel, Panel):