24 lines
791 B
Markdown
24 lines
791 B
Markdown
# blender-mapping-tools
|
|
|
|
Blender extension for creating maps
|
|
|
|
Adds a "Mapping" tab in the sidebar of the main 3D view. (Press 'n' if it isn't
|
|
visible.)
|
|
|
|
## Building
|
|
|
|
TODO: make a proper build system.
|
|
|
|
For Blender 4.4:
|
|
|
|
```sh
|
|
pip download rasterio --dest ./wheels --only-binary=:all: --python-version=3.11 --platform=manylinux_2_17_x86_64
|
|
pip download rasterio --dest ./wheels --only-binary=:all: --python-version=3.11 --platform=macosx_11_0_arm64
|
|
pip download rasterio --dest ./wheels --only-binary=:all: --python-version=3.11 --platform=win_amd64
|
|
# Or replcace ".." below with any directory.
|
|
# blender_mapping_tools-0.1.0.zip will be placed in that directory.
|
|
blender --command extension build --output-dir ..
|
|
```
|
|
|
|
Then install `blender_mapping_tools-0.1.0.zip` as an extension in blender.
|