├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── bp_props.py ├── ops ├── bp_collection.py ├── bp_draw_objects.py ├── bp_general.py ├── bp_material.py ├── bp_object.py ├── bp_scene.py └── bp_world.py ├── sidebar_utils.py ├── splash.png ├── splash_2x.png ├── startup.blend ├── ui ├── bp_view3d_ui_sidebar_collections.py ├── bp_view3d_ui_sidebar_materials.py ├── bp_view3d_ui_sidebar_object.py ├── bp_view3d_ui_sidebar_render.py ├── bp_view3d_ui_sidebar_render_cycles.py ├── bp_view3d_ui_sidebar_scene.py ├── bp_view3d_ui_sidebar_view.py ├── bp_view3d_ui_sidebar_world.py ├── constraints.py └── modifiers.py └── userpref.blend /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/ProSidebar/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/ProSidebar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/ProSidebar/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/ProSidebar/HEAD/__init__.py -------------------------------------------------------------------------------- /bp_props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/ProSidebar/HEAD/bp_props.py -------------------------------------------------------------------------------- /ops/bp_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/ProSidebar/HEAD/ops/bp_collection.py -------------------------------------------------------------------------------- /ops/bp_draw_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/ProSidebar/HEAD/ops/bp_draw_objects.py -------------------------------------------------------------------------------- /ops/bp_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/ProSidebar/HEAD/ops/bp_general.py -------------------------------------------------------------------------------- /ops/bp_material.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/ProSidebar/HEAD/ops/bp_material.py -------------------------------------------------------------------------------- /ops/bp_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/ProSidebar/HEAD/ops/bp_object.py -------------------------------------------------------------------------------- /ops/bp_scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/ProSidebar/HEAD/ops/bp_scene.py -------------------------------------------------------------------------------- /ops/bp_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/ProSidebar/HEAD/ops/bp_world.py -------------------------------------------------------------------------------- /sidebar_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/ProSidebar/HEAD/sidebar_utils.py -------------------------------------------------------------------------------- /splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/ProSidebar/HEAD/splash.png -------------------------------------------------------------------------------- /splash_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/ProSidebar/HEAD/splash_2x.png -------------------------------------------------------------------------------- /startup.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/ProSidebar/HEAD/startup.blend -------------------------------------------------------------------------------- /ui/bp_view3d_ui_sidebar_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/ProSidebar/HEAD/ui/bp_view3d_ui_sidebar_collections.py -------------------------------------------------------------------------------- /ui/bp_view3d_ui_sidebar_materials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/ProSidebar/HEAD/ui/bp_view3d_ui_sidebar_materials.py -------------------------------------------------------------------------------- /ui/bp_view3d_ui_sidebar_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/ProSidebar/HEAD/ui/bp_view3d_ui_sidebar_object.py -------------------------------------------------------------------------------- /ui/bp_view3d_ui_sidebar_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/ProSidebar/HEAD/ui/bp_view3d_ui_sidebar_render.py -------------------------------------------------------------------------------- /ui/bp_view3d_ui_sidebar_render_cycles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/ProSidebar/HEAD/ui/bp_view3d_ui_sidebar_render_cycles.py -------------------------------------------------------------------------------- /ui/bp_view3d_ui_sidebar_scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/ProSidebar/HEAD/ui/bp_view3d_ui_sidebar_scene.py -------------------------------------------------------------------------------- /ui/bp_view3d_ui_sidebar_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/ProSidebar/HEAD/ui/bp_view3d_ui_sidebar_view.py -------------------------------------------------------------------------------- /ui/bp_view3d_ui_sidebar_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/ProSidebar/HEAD/ui/bp_view3d_ui_sidebar_world.py -------------------------------------------------------------------------------- /ui/constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/ProSidebar/HEAD/ui/constraints.py -------------------------------------------------------------------------------- /ui/modifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/ProSidebar/HEAD/ui/modifiers.py -------------------------------------------------------------------------------- /userpref.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/ProSidebar/HEAD/userpref.blend --------------------------------------------------------------------------------