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:
authorRyan Inch <mythologylover75@gmail.com>2020-07-22 11:05:26 +0300
committerRyan Inch <mythologylover75@gmail.com>2020-07-22 11:05:26 +0300
commitcee175131c6d71a5c7043c8c3e177654d7b7ad86 (patch)
tree8a610564e2a5433311fb3a35759fadef9966c43b /object_collection_manager/__init__.py
parent09133c5abdc1236ea61a98e68a0f23ba3503b472 (diff)
Collection Manager: Add Operator. Task: T69577
Add Apply Phantom Mode operator.
Diffstat (limited to 'object_collection_manager/__init__.py')
-rw-r--r--object_collection_manager/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/object_collection_manager/__init__.py b/object_collection_manager/__init__.py
index 04422b84..fb9c0c49 100644
--- a/object_collection_manager/__init__.py
+++ b/object_collection_manager/__init__.py
@@ -22,7 +22,7 @@ bl_info = {
"name": "Collection Manager",
"description": "Manage collections and their objects",
"author": "Ryan Inch",
- "version": (2, 11, 0),
+ "version": (2, 12, 0),
"blender": (2, 80, 0),
"location": "View3D - Object Mode (Shortcut - M)",
"warning": '', # used for warning icon and text in addons panel
@@ -113,6 +113,7 @@ classes = (
operators.CMRemoveEmptyCollectionsOperator,
operators.CMSetCollectionOperator,
operators.CMPhantomModeOperator,
+ operators.CMApplyPhantomModeOperator,
preferences.CMPreferences,
ui.CM_UL_items,
ui.CollectionManager,