All Projects → CGCookie → addon_common

CGCookie / addon_common

Licence: GPL-3.0 License
No description, website, or topics provided.

Programming Languages

python
139335 projects - #7 most used programming language
GLSL
2045 projects

addon_common

This repo contains the CookieCutter Blender add-on framework.

The main branch works only with Blender 2.79, but development for Blender 2.80 is under the b280 branch.

Example Add-on

As an example add-on for Blender 2.79, see the ExtruCut project.

Creating your own add-on using CookieCutter

Creating a Blender 2.79b add-on

# create new addon folder
mkdir newaddon
cd newaddon

# initialize as new git repo
git init .

# add CC addon_common as submodule
git submodule add [email protected]:CGCookie/addon_common.git addon_common

Creating a Blender 2.80 add-on

# create new addon folder
mkdir newaddon
cd newaddon

# initialize as new git repo
git init .

# add CC addon_common as submodule
git submodule add [email protected]:CGCookie/addon_common.git addon_common
cd addon_common
git checkout b280  # <-- important for b280!

Updating CookieCutter submodule

# update CC addon_common
cd addon_common
git pull

resources

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].