├── .gitignore ├── LICENSE ├── README.md ├── blender_menu_structure ├── __init__.py └── icons │ ├── arrow.png │ ├── arrowBlue.png │ └── heart.png └── screenshot.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedererdmann/blender_menus/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedererdmann/blender_menus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedererdmann/blender_menus/HEAD/README.md -------------------------------------------------------------------------------- /blender_menu_structure/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedererdmann/blender_menus/HEAD/blender_menu_structure/__init__.py -------------------------------------------------------------------------------- /blender_menu_structure/icons/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedererdmann/blender_menus/HEAD/blender_menu_structure/icons/arrow.png -------------------------------------------------------------------------------- /blender_menu_structure/icons/arrowBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedererdmann/blender_menus/HEAD/blender_menu_structure/icons/arrowBlue.png -------------------------------------------------------------------------------- /blender_menu_structure/icons/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedererdmann/blender_menus/HEAD/blender_menu_structure/icons/heart.png -------------------------------------------------------------------------------- /screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friedererdmann/blender_menus/HEAD/screenshot.jpg --------------------------------------------------------------------------------