Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anatawa12/blender-lib
anatawa12's blender libraries extension
https://github.com/anatawa12/blender-lib
addon blender vrchat
Last synced: 5 days ago
JSON representation
anatawa12's blender libraries extension
- Host: GitHub
- URL: https://github.com/anatawa12/blender-lib
- Owner: anatawa12
- License: gpl-3.0
- Created: 2022-04-30T13:15:27.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-02-10T10:00:16.000Z (over 1 year ago)
- Last Synced: 2024-10-10T21:14:46.949Z (26 days ago)
- Topics: addon, blender, vrchat
- Language: Python
- Homepage:
- Size: 65.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# anatawa12's blender libraries extension
## how to install
1. download zip [here][zip-link].
2. open preference of Blender at 'Edit' menu
3. Select `Add-ons` from left menu
4. Click `install...`
5. select downloaded zip[zip-link]: https://github.com/anatawa12/blender-lib/archive/refs/heads/master.zip
## License
GPL-3.0-only. see LICENSE
When you create pull requests, please approve me to publish your changes in GPL 3.0 or later.
I may change the license to later version of GPL.## To use this library
Add following code into the head of your script and use functions like `a.()`.
Please replace `` with the version you want to use.```python
import bpy
import addon_utils
from importlib import import_modulel = [m for m in addon_utils.modules() if "anatawa12_library_selector" in m.bl_info]
if len(l) == 0:
bpy.context.window_manager.popup_menu(
(lambda s, c: s.layout.label(text="Please install anatawa12's blender library from https://github.com/anatawa12/blender-lib")),
title="Error", icon='ERROR')
a = import_module(l[0].__name__)
a.version_check()
```