Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'blenderkit/__init__.py')
-rw-r--r--blenderkit/__init__.py14
1 files changed, 13 insertions, 1 deletions
diff --git a/blenderkit/__init__.py b/blenderkit/__init__.py
index 1a8c3cef..2c625adc 100644
--- a/blenderkit/__init__.py
+++ b/blenderkit/__init__.py
@@ -1498,7 +1498,19 @@ class BlenderKitSceneSearchProps(PropertyGroup, BlenderKitCommonSearchProps):
default="",
update=search.search_update
)
-
+ append_link: EnumProperty(
+ name="Append or link",
+ items=(
+ ('LINK', 'Link', ''),
+ ('APPEND', 'Append', ''),
+ ),
+ description="choose if the scene will be linked or appended",
+ default="APPEND"
+ )
+ switch_after_append: BoolProperty(
+ name = 'Switch to scene after download',
+ default = False
+ )
def fix_subdir(self, context):
'''Fixes project subdicrectory settings if people input invalid path.'''