Compare commits
No commits in common. "77f30d51d1125383baa3fc1d66e3122173c22362" and "5c79392b403d9eb51204d0c2880b68606e9fd18c" have entirely different histories.
77f30d51d1
...
5c79392b40
2 changed files with 38 additions and 49 deletions
|
@ -1,47 +0,0 @@
|
||||||
```
|
|
||||||
_ ____ ____ _____ ____
|
|
||||||
/ \ | __ ) / ___|___ /| _ \
|
|
||||||
/ _ \ | _ \| | |_ \| | | |
|
|
||||||
/ ___ \| |_) | |___ ___) | |_| |
|
|
||||||
/_/ \_\____/ \____|____/|____/
|
|
||||||
```
|
|
||||||
|
|
||||||
Convenience tool to work with 3D typography in Blender and Cinema4D.
|
|
||||||
|
|
||||||
# get bpy python working by:
|
|
||||||
```bash
|
|
||||||
$HOME/git/tools/blender_git/build_linux_v4.1/bin/4.1/python/bin/python3.11 -m venv venv
|
|
||||||
source venv/bin/activate
|
|
||||||
pip install bpy
|
|
||||||
```
|
|
||||||
|
|
||||||
to install mathutils, this was necessary for me:
|
|
||||||
```
|
|
||||||
sudo xbps-install -Sy python3.11-devel
|
|
||||||
CFLAGS=$(python3.11-config --cflags) LDFLAGS=$(python3.11-config --ldflags) pip install mathutils
|
|
||||||
```
|
|
||||||
|
|
||||||
# install addon:
|
|
||||||
```bash
|
|
||||||
cd <root directory>
|
|
||||||
ln -s $(pwd) $HOME/git/tools/blender_git/build_linux_v4.1/bin/4.1/scripts/addons/abc3d
|
|
||||||
```
|
|
||||||
|
|
||||||
# get blender addon path:
|
|
||||||
```python
|
|
||||||
bpy.utils.script_paths()
|
|
||||||
```
|
|
||||||
then check it for the `addons` directory
|
|
||||||
|
|
||||||
# addons dir:
|
|
||||||
```
|
|
||||||
~/git/tools/blender_git/build_linux_v4.1/bin/4.1/scripts/addons/
|
|
||||||
```
|
|
||||||
|
|
||||||
# addon data:
|
|
||||||
```
|
|
||||||
~/.config/blender/4.1/datafiles
|
|
||||||
```
|
|
||||||
|
|
||||||
# reload addon in blender:
|
|
||||||
F3 -> "reload scripts"
|
|
40
README.md
40
README.md
|
@ -8,6 +8,42 @@
|
||||||
|
|
||||||
Convenience tool to work with 3D typography in Blender and Cinema4D.
|
Convenience tool to work with 3D typography in Blender and Cinema4D.
|
||||||
|
|
||||||
Install as you would normally install an addon.
|
The readme is at the moment for development only. Install as you would normally install an addon.
|
||||||
|
|
||||||
Instructions for development in [CONTRIBUTING,md](./CONTRIBUTING.md).
|
# get bpy python working by:
|
||||||
|
```bash
|
||||||
|
$HOME/git/tools/blender_git/build_linux_v4.1/bin/4.1/python/bin/python3.11 -m venv venv
|
||||||
|
source venv/bin/activate
|
||||||
|
pip install bpy
|
||||||
|
```
|
||||||
|
|
||||||
|
to install mathutils, this was necessary for me:
|
||||||
|
```
|
||||||
|
sudo xbps-install -Sy python3.11-devel
|
||||||
|
CFLAGS=$(python3.11-config --cflags) LDFLAGS=$(python3.11-config --ldflags) pip install mathutils
|
||||||
|
```
|
||||||
|
|
||||||
|
# install addon:
|
||||||
|
```bash
|
||||||
|
cd <root directory>
|
||||||
|
ln -s $(pwd) $HOME/git/tools/blender_git/build_linux_v4.1/bin/4.1/scripts/addons/abc3d
|
||||||
|
```
|
||||||
|
|
||||||
|
# get blender addon path:
|
||||||
|
```python
|
||||||
|
bpy.utils.script_paths()
|
||||||
|
```
|
||||||
|
then check it for the `addons` directory
|
||||||
|
|
||||||
|
# addons dir:
|
||||||
|
```
|
||||||
|
~/git/tools/blender_git/build_linux_v4.1/bin/4.1/scripts/addons/
|
||||||
|
```
|
||||||
|
|
||||||
|
# addon data:
|
||||||
|
```
|
||||||
|
~/.config/blender/4.1/datafiles
|
||||||
|
```
|
||||||
|
|
||||||
|
# reload addon in blender:
|
||||||
|
F3 -> "reload scripts"
|
||||||
|
|
Loading…
Add table
Reference in a new issue