├── .github └── workflows │ └── publish-to-test-pypi.yml ├── .gitignore ├── LICENSE ├── README.md ├── setup.py └── src └── bpybb ├── __init__.py ├── addon.py ├── animate.py ├── collection.py ├── color.py ├── empty.py ├── hdri.py ├── material.py ├── mesh.py ├── modifier.py ├── object.py ├── output.py ├── random.py ├── utils.py ├── version.py └── world_shader.py /.github/workflows/publish-to-test-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/bpy_building_blocks/HEAD/.github/workflows/publish-to-test-pypi.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/bpy_building_blocks/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/bpy_building_blocks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/bpy_building_blocks/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/bpy_building_blocks/HEAD/setup.py -------------------------------------------------------------------------------- /src/bpybb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/bpy_building_blocks/HEAD/src/bpybb/__init__.py -------------------------------------------------------------------------------- /src/bpybb/addon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/bpy_building_blocks/HEAD/src/bpybb/addon.py -------------------------------------------------------------------------------- /src/bpybb/animate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/bpy_building_blocks/HEAD/src/bpybb/animate.py -------------------------------------------------------------------------------- /src/bpybb/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/bpy_building_blocks/HEAD/src/bpybb/collection.py -------------------------------------------------------------------------------- /src/bpybb/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/bpy_building_blocks/HEAD/src/bpybb/color.py -------------------------------------------------------------------------------- /src/bpybb/empty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/bpy_building_blocks/HEAD/src/bpybb/empty.py -------------------------------------------------------------------------------- /src/bpybb/hdri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/bpy_building_blocks/HEAD/src/bpybb/hdri.py -------------------------------------------------------------------------------- /src/bpybb/material.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/bpy_building_blocks/HEAD/src/bpybb/material.py -------------------------------------------------------------------------------- /src/bpybb/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/bpy_building_blocks/HEAD/src/bpybb/mesh.py -------------------------------------------------------------------------------- /src/bpybb/modifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/bpy_building_blocks/HEAD/src/bpybb/modifier.py -------------------------------------------------------------------------------- /src/bpybb/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/bpy_building_blocks/HEAD/src/bpybb/object.py -------------------------------------------------------------------------------- /src/bpybb/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/bpy_building_blocks/HEAD/src/bpybb/output.py -------------------------------------------------------------------------------- /src/bpybb/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/bpy_building_blocks/HEAD/src/bpybb/random.py -------------------------------------------------------------------------------- /src/bpybb/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/bpy_building_blocks/HEAD/src/bpybb/utils.py -------------------------------------------------------------------------------- /src/bpybb/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/bpy_building_blocks/HEAD/src/bpybb/version.py -------------------------------------------------------------------------------- /src/bpybb/world_shader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGArtPython/bpy_building_blocks/HEAD/src/bpybb/world_shader.py --------------------------------------------------------------------------------