https://github.com/progm/my-blender-addons
A collection of blender add-ons I've created for my workflow and a list of useful ones from the internet.
https://github.com/progm/my-blender-addons
Last synced: 8 months ago
JSON representation
A collection of blender add-ons I've created for my workflow and a list of useful ones from the internet.
- Host: GitHub
- URL: https://github.com/progm/my-blender-addons
- Owner: ProGM
- License: mit
- Created: 2023-10-07T10:41:22.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-07T10:56:12.000Z (almost 3 years ago)
- Last Synced: 2025-09-20T08:58:01.853Z (10 months ago)
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Blender add-ons
A collection of blender add-ons I've created for my workflow and a list of useful ones from the internet.
## In this repo
- `keyframes_to_linear.py`: It adds two simple commands: "Set All Keyframes to Linear" and "Set Selected Keyframes to Linear".
## From the internet
- https://github.com/gnastacast/bendy_bone_handles
## Scripting utilities
### Listing all available context menus
Paste this in the blender python console:
```python
[name for name in dir(bpy.types) if "MT" in name]
```
Example output:
```python
['ALL_MT_editormenu', 'ASSETBROWSER_MT_asset', 'ASSETBROWSER_MT_catalog', 'ASSETBROWSER_MT_context_menu', 'ASSETBROWSER_MT_editor_menus', 'ASSETBROWSER_MT_metadata_preview_menu', 'ASSETBROWSER_MT_select', 'ASSETBROWSER_MT_view', ...]
```