├── .gitignore ├── LICENSE ├── README.md └── res └── images ├── blender_assign_fake_user.jpg ├── blender_data_append.JPG ├── blender_data_append_folder.JPG ├── blender_outliner_data_api.jpg ├── blender_outliner_libraries.jpg ├── blender_outliner_libraries_data.jpg ├── blender_outliner_material_users.jpg ├── developer_extras.jpg ├── material_slot_add.jpg ├── material_slot_add_success.png ├── opengl_custom_color_overlay.png ├── outliner_data_structure.JPG ├── property_edit_list_str.jpg ├── property_list_float.jpg ├── property_list_float_color.jpg ├── property_list_str.jpg ├── property_str.jpg ├── register_script.jpg └── script_editor_examples.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | .history/* 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgolter/blender-pipeline-integration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgolter/blender-pipeline-integration/HEAD/README.md -------------------------------------------------------------------------------- /res/images/blender_assign_fake_user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgolter/blender-pipeline-integration/HEAD/res/images/blender_assign_fake_user.jpg -------------------------------------------------------------------------------- /res/images/blender_data_append.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgolter/blender-pipeline-integration/HEAD/res/images/blender_data_append.JPG -------------------------------------------------------------------------------- /res/images/blender_data_append_folder.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgolter/blender-pipeline-integration/HEAD/res/images/blender_data_append_folder.JPG -------------------------------------------------------------------------------- /res/images/blender_outliner_data_api.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgolter/blender-pipeline-integration/HEAD/res/images/blender_outliner_data_api.jpg -------------------------------------------------------------------------------- /res/images/blender_outliner_libraries.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgolter/blender-pipeline-integration/HEAD/res/images/blender_outliner_libraries.jpg -------------------------------------------------------------------------------- /res/images/blender_outliner_libraries_data.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgolter/blender-pipeline-integration/HEAD/res/images/blender_outliner_libraries_data.jpg -------------------------------------------------------------------------------- /res/images/blender_outliner_material_users.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgolter/blender-pipeline-integration/HEAD/res/images/blender_outliner_material_users.jpg -------------------------------------------------------------------------------- /res/images/developer_extras.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgolter/blender-pipeline-integration/HEAD/res/images/developer_extras.jpg -------------------------------------------------------------------------------- /res/images/material_slot_add.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgolter/blender-pipeline-integration/HEAD/res/images/material_slot_add.jpg -------------------------------------------------------------------------------- /res/images/material_slot_add_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgolter/blender-pipeline-integration/HEAD/res/images/material_slot_add_success.png -------------------------------------------------------------------------------- /res/images/opengl_custom_color_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgolter/blender-pipeline-integration/HEAD/res/images/opengl_custom_color_overlay.png -------------------------------------------------------------------------------- /res/images/outliner_data_structure.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgolter/blender-pipeline-integration/HEAD/res/images/outliner_data_structure.JPG -------------------------------------------------------------------------------- /res/images/property_edit_list_str.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgolter/blender-pipeline-integration/HEAD/res/images/property_edit_list_str.jpg -------------------------------------------------------------------------------- /res/images/property_list_float.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgolter/blender-pipeline-integration/HEAD/res/images/property_list_float.jpg -------------------------------------------------------------------------------- /res/images/property_list_float_color.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgolter/blender-pipeline-integration/HEAD/res/images/property_list_float_color.jpg -------------------------------------------------------------------------------- /res/images/property_list_str.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgolter/blender-pipeline-integration/HEAD/res/images/property_list_str.jpg -------------------------------------------------------------------------------- /res/images/property_str.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgolter/blender-pipeline-integration/HEAD/res/images/property_str.jpg -------------------------------------------------------------------------------- /res/images/register_script.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgolter/blender-pipeline-integration/HEAD/res/images/register_script.jpg -------------------------------------------------------------------------------- /res/images/script_editor_examples.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulgolter/blender-pipeline-integration/HEAD/res/images/script_editor_examples.jpg --------------------------------------------------------------------------------