simple addon that add menu entry when any Camera object is selected.
To make it always accessible in RMB menu, if even nothing is selected, replace code with this
def cameras_specials_menu(self, contxt):
self.layout.separator()
self.layout.menu(VIEW3D_MT_cameras_main.bl_idname)
quick switching between objects type visibility in the collection.
Works also from 3d View (if you add keymap for it), BUT instead of using active collection it uses selected objects and use all their collection where they located.
Also if you want it to be like this
just rename OUTLINER_MT_collection_visibility
to OUTLINER_MT_collection
at the bottom in the script file.
Makes all unselected (inactive) objects display as wire or bounds,
with posibility add selected active collection to ignore list as many as you need
simple addon that adds operator to lock selected and unlock all (Freeze/Unfreeze 3ds Max like).
For those who do not want extra actions in Outliner.
just add any key in Keymaps for this operator objects.lock_unlock
and choose action
new entries for Outliner context for Objects and for Collections selected.
For objects:
- Duplicate - for multiple selected objects
- Duplicate Hierarchy - for multiple selected objects without selecting parented elements
- Duplicate Instance - for multiple selected objects
- Duplicate Instance Hierarchy - for multiple selected objects without selecting parented elements
- Select Hierarchy Multi - for multiple selected objects
For collections (possibile with new ‘selected_ids’ feature):
- Select Objects - for multiple selected collections
- Duplicate Collections - for multiple selected collections (thanks for people from blender.stackexchange)
- Duplicate Linked - for multiple selected collections
Simple addon to scale object. Starting length and final length between two points, and then scale to match values.
There is option to change Panel category name in addon preferences.
Update 0.1.1:
- added "Selection only" option - to scale only selected elements in Edit mode.
- added posibility to Get length between two objects in Object mode.
- "Scale" works for multiple selection in Edit or Object mode.
Precision_Scaler_Blender.mp4
Simple addon to select vertices affected by shape keys.
Make active Collection where selected active object located
If you don't need icon in Outliner, then just delete or comment lines 72 and 78
bpy.types.OUTLINER_HT_header.append(draw_sync_collection)
and
bpy.types.OUTLINER_HT_header.remove(draw_sync_collection)
addon with options to moving UV up and down in the list and sorting.
also there is Batch tools for UV,
you can get this addon menus here https://blenderartists.org/t/select-sync-uv-channel-layer-between-multiple-objects/1314529/5
If it's active, it will switch collection by clicking on object.