├── .gitignore ├── ImguiExample ├── __init__.py ├── blender_imgui.py ├── operators.py ├── overlays.py ├── panels.py └── properties.py ├── README.md ├── blender_imgui.py ├── doc ├── overlay-switch.png └── overview.png └── make_releases.py /.gitignore: -------------------------------------------------------------------------------- 1 | releases/ 2 | __pycache__/ -------------------------------------------------------------------------------- /ImguiExample/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliemichel/BlenderImgui/HEAD/ImguiExample/__init__.py -------------------------------------------------------------------------------- /ImguiExample/blender_imgui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliemichel/BlenderImgui/HEAD/ImguiExample/blender_imgui.py -------------------------------------------------------------------------------- /ImguiExample/operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliemichel/BlenderImgui/HEAD/ImguiExample/operators.py -------------------------------------------------------------------------------- /ImguiExample/overlays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliemichel/BlenderImgui/HEAD/ImguiExample/overlays.py -------------------------------------------------------------------------------- /ImguiExample/panels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliemichel/BlenderImgui/HEAD/ImguiExample/panels.py -------------------------------------------------------------------------------- /ImguiExample/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliemichel/BlenderImgui/HEAD/ImguiExample/properties.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliemichel/BlenderImgui/HEAD/README.md -------------------------------------------------------------------------------- /blender_imgui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliemichel/BlenderImgui/HEAD/blender_imgui.py -------------------------------------------------------------------------------- /doc/overlay-switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliemichel/BlenderImgui/HEAD/doc/overlay-switch.png -------------------------------------------------------------------------------- /doc/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliemichel/BlenderImgui/HEAD/doc/overview.png -------------------------------------------------------------------------------- /make_releases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliemichel/BlenderImgui/HEAD/make_releases.py --------------------------------------------------------------------------------