├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── blender-2.7-build.yml │ └── blender-2.8-build.yml ├── .gitignore ├── .pep8 ├── .pylintrc ├── .textlintrc ├── Gemfile ├── LICENSE ├── README.md ├── config └── compass.rb ├── gulpfile.js ├── package.json ├── prh.yml ├── requirements.txt ├── src ├── 2.7 │ ├── fonts │ │ └── NotoSansCJKjp-DemiLight-Subset.woff │ ├── images │ │ ├── chapter_01 │ │ │ ├── 01_What_is_Blender_What_is_Add-on │ │ │ │ ├── blender_add-on.png │ │ │ │ └── blender_startup.png │ │ │ ├── 02_Use_Blender_Add-on │ │ │ │ ├── disable_add-on_2.png │ │ │ │ ├── enable_add-on_2.png │ │ │ │ ├── enable_add-on_5.png │ │ │ │ ├── enable_add-on_6.png │ │ │ │ ├── localizing_into_japanese_1.png │ │ │ │ ├── localizing_into_japanese_3.png │ │ │ │ ├── localizing_into_japanese_4.png │ │ │ │ └── uninstall_add-on_2.png │ │ │ ├── 03_Prepare_Add-on_development_environment │ │ │ │ ├── blender_change_window_1.png │ │ │ │ ├── blender_change_window_2.png │ │ │ │ ├── blender_change_window_3.png │ │ │ │ ├── blender_change_window_4.png │ │ │ │ ├── blender_divide_window_1.png │ │ │ │ ├── blender_divide_window_2.png │ │ │ │ ├── blender_divide_window_3.png │ │ │ │ ├── blender_final.png │ │ │ │ ├── blender_initial.png │ │ │ │ ├── blender_read_factory_setting_1.png │ │ │ │ ├── blender_read_factory_setting_2.png │ │ │ │ ├── blender_save_startup_file_1.png │ │ │ │ ├── blender_save_startup_file_2.png │ │ │ │ └── blender_show_console_window_2.png │ │ │ ├── 04_Understand_Install_Uninstall_Update_Add-on │ │ │ │ ├── install_1_use_default_add-on_installation_feature_1.png │ │ │ │ ├── install_1_use_default_add-on_installation_feature_2.png │ │ │ │ ├── install_1_use_default_add-on_installation_feature_3.png │ │ │ │ ├── install_1_use_default_add-on_installation_feature_4.png │ │ │ │ ├── install_1_use_default_add-on_installation_feature_5.png │ │ │ │ ├── install_2_deploy_to_blender_add-on_folder_1.png │ │ │ │ ├── install_2_deploy_to_blender_add-on_folder_2.png │ │ │ │ ├── install_2_deploy_to_blender_add-on_folder_3.png │ │ │ │ ├── uninstall_1_use_default_add-on_uninstallation_feature_1.png │ │ │ │ ├── uninstall_1_use_default_add-on_uninstallation_feature_2.png │ │ │ │ ├── uninstall_1_use_default_add-on_uninstallation_feature_3.png │ │ │ │ ├── uninstall_1_use_default_add-on_uninstallation_feature_4.png │ │ │ │ ├── uninstall_1_use_default_add-on_uninstallation_feature_5.png │ │ │ │ ├── uninstall_2_delete_sources_on_blender_add-on_folder_1.png │ │ │ │ ├── uninstall_2_delete_sources_on_blender_add-on_folder_2.png │ │ │ │ ├── uninstall_2_delete_sources_on_blender_add-on_folder_3.png │ │ │ │ ├── update_3_use_reload_scripts_2.png │ │ │ │ └── update_3_use_reload_scripts_3.png │ │ │ └── 05_Install_own_Add-on │ │ │ │ ├── blender_disable_add-on.png │ │ │ │ ├── blender_enable_add-on_2.png │ │ │ │ ├── blender_enable_add-on_3.png │ │ │ │ ├── blender_make_add-on_2.png │ │ │ │ ├── blender_make_add-on_3.png │ │ │ │ ├── blender_make_add-on_4.png │ │ │ │ └── blender_make_add-on_5.png │ │ ├── chapter_02 │ │ │ ├── 01_Basic_of_Add-on_Development │ │ │ │ ├── bl-info_1.png │ │ │ │ ├── bl-info_2.png │ │ │ │ ├── bl-info_3.png │ │ │ │ ├── bl-info_4.png │ │ │ │ ├── bl-info_5.png │ │ │ │ ├── bl-info_6.png │ │ │ │ ├── enable_add-on.png │ │ │ │ ├── find_API.png │ │ │ │ ├── generate_ico-sphere_1.png │ │ │ │ ├── generate_ico-sphere_2.png │ │ │ │ ├── operation_1.png │ │ │ │ ├── operation_2.png │ │ │ │ ├── run_script.png │ │ │ │ └── use_add-on_1.png │ │ │ ├── 02_Register_Multiple_Operation_Classes │ │ │ │ ├── enable_add-on.png │ │ │ │ ├── python_console_1.png │ │ │ │ ├── python_console_2.png │ │ │ │ ├── use_add-on_1.png │ │ │ │ └── use_add-on_2.png │ │ │ ├── 03_Use_Property_on_Tool_Shelf_1 │ │ │ │ ├── enable_add-on.png │ │ │ │ ├── tool-shelf.png │ │ │ │ ├── use-add-on_5.png │ │ │ │ ├── use_add-on_2.png │ │ │ │ └── use_add-on_3.png │ │ │ ├── 04_Use_Property_on_Tool_Shelf_2 │ │ │ │ ├── option_subtype_acceleration.png │ │ │ │ ├── option_subtype_axisangle.png │ │ │ │ ├── option_subtype_color.png │ │ │ │ ├── option_subtype_euler.png │ │ │ │ ├── option_subtype_none.png │ │ │ │ ├── option_subtype_quaternion.png │ │ │ │ ├── option_subtype_translation.png │ │ │ │ ├── option_subtype_velocity.png │ │ │ │ ├── option_subtype_xyz.png │ │ │ │ ├── use_add-on_1.png │ │ │ │ └── use_add-on_2.png │ │ │ ├── 05_Create_Sub-menu │ │ │ │ ├── multilevel_menu.png │ │ │ │ ├── use_add-on.png │ │ │ │ └── use_add-on_2.png │ │ │ ├── 06_Allocate_Shortcut_Keys │ │ │ │ └── use_add-on_1.png │ │ │ ├── 08_Control_Blender_UI_1 │ │ │ │ ├── add-on_spec.png │ │ │ │ ├── control_UI_on_View3D_1.png │ │ │ │ ├── control_UI_on_View3D_2.png │ │ │ │ ├── control_UI_on_View3D_3.png │ │ │ │ ├── control_UI_on_View3D_4.png │ │ │ │ ├── control_UI_on_View3D_5.png │ │ │ │ └── control_UI_on_View3D_6.png │ │ │ ├── 09_Control_Blender_UI_2 │ │ │ │ ├── add-on_spec.png │ │ │ │ ├── icon_list_1.png │ │ │ │ ├── icon_list_2.png │ │ │ │ └── icon_list_3.png │ │ │ └── 10_Control_Blender_UI_3 │ │ │ │ ├── add-on_spec.png │ │ │ │ ├── confirm_popup_1.png │ │ │ │ ├── confirm_popup_2.png │ │ │ │ ├── dialog_menu_1.png │ │ │ │ ├── dialog_menu_2.png │ │ │ │ ├── dialog_menu_3.png │ │ │ │ ├── dialog_menu_4.png │ │ │ │ ├── file_browser_1.png │ │ │ │ ├── file_browser_2.png │ │ │ │ ├── popup_message_1.png │ │ │ │ ├── popup_message_2.png │ │ │ │ ├── prop_popup_1.png │ │ │ │ ├── prop_popup_2.png │ │ │ │ ├── search_popup_1.png │ │ │ │ ├── search_popup_2.png │ │ │ │ └── search_popup_3.png │ │ ├── chapter_03 │ │ │ ├── 01_Handle_Mouse_Click_Event │ │ │ │ ├── enable_add-on_1.png │ │ │ │ ├── use_add-on_1.png │ │ │ │ ├── use_add-on_2.png │ │ │ │ ├── use_add-on_3.png │ │ │ │ └── use_add-on_4.png │ │ │ ├── 02_Handle_Keyboard_Key_Event │ │ │ │ ├── enable_add-on.png │ │ │ │ ├── use_add-on_1.png │ │ │ │ └── use_add-on_2.png │ │ │ ├── 03_Handle_Timer_Event │ │ │ │ ├── enable_add-on.png │ │ │ │ ├── use_add-on-2.png │ │ │ │ ├── use_add-on-3.png │ │ │ │ └── use_add-on_1.png │ │ │ ├── 04_Use_API_for_OpenGL │ │ │ │ ├── enable_addon.png │ │ │ │ ├── region_coordinate.png │ │ │ │ ├── use_addon_1.png │ │ │ │ ├── use_addon_2.png │ │ │ │ ├── use_addon_3.png │ │ │ │ ├── use_addon_4.png │ │ │ │ └── use_addon_5.png │ │ │ ├── 05_Render_String_with_blf_Module │ │ │ │ ├── enable_add-on.png │ │ │ │ ├── use_add-on_1.png │ │ │ │ ├── use_add-on_2.png │ │ │ │ └── use_add-on_3.png │ │ │ ├── 06_Play_Audio_File │ │ │ │ ├── enable_add-on.png │ │ │ │ ├── use_add-on_1.png │ │ │ │ ├── use_add-on_2.png │ │ │ │ ├── use_add-on_3.png │ │ │ │ ├── use_add-on_4.png │ │ │ │ └── use_add-on_5.png │ │ │ ├── 07_Multilingual_Support │ │ │ │ ├── use_add-on_1.png │ │ │ │ ├── use_add-on_2.png │ │ │ │ ├── use_add-on_3.png │ │ │ │ ├── use_add-on_4.png │ │ │ │ └── use_add-on_5.png │ │ │ ├── 08_Use_Coordinate_Transformation_1 │ │ │ │ ├── coordinate_transformation_1.png │ │ │ │ ├── coordinate_transformation_2.png │ │ │ │ ├── coordinate_transformation_3.png │ │ │ │ ├── enable_add-on.png │ │ │ │ ├── use_add-on_1.png │ │ │ │ ├── use_add-on_2.png │ │ │ │ └── use_add-on_3.png │ │ │ ├── 09_Use_Coordinate_Transformation_2 │ │ │ │ ├── enable_add-on.png │ │ │ │ ├── ray_intersection.png │ │ │ │ ├── use_add-on_1.png │ │ │ │ ├── use_add-on_2.png │ │ │ │ └── use_add-on_3.png │ │ │ └── 10_Use_User_Preference │ │ │ │ ├── enable_add-on.png │ │ │ │ ├── use_add-on_1.png │ │ │ │ ├── use_add-on_2.png │ │ │ │ ├── user_preferences_1.png │ │ │ │ └── user_preferences_2.png │ │ ├── chapter_04 │ │ │ ├── 01_Research_official_Blender_API_for_Add-on │ │ │ │ ├── blender_api_doc_enum_property.png │ │ │ │ ├── python_console_1.png │ │ │ │ ├── python_console_2.png │ │ │ │ ├── python_console_3.png │ │ │ │ ├── read_addon_source_code_1.png │ │ │ │ ├── read_addon_source_code_2.png │ │ │ │ ├── read_addon_source_code_3.png │ │ │ │ ├── read_addon_source_code_4.png │ │ │ │ ├── read_addon_source_code_5.png │ │ │ │ ├── template_1.png │ │ │ │ └── template_2.png │ │ │ ├── 02_Debug_Add-on │ │ │ │ ├── configure_path_1.png │ │ │ │ ├── configure_path_2.png │ │ │ │ ├── configure_path_3.png │ │ │ │ ├── configure_path_4.png │ │ │ │ ├── enable_breakpoint.png │ │ │ │ ├── install_pydev_1.png │ │ │ │ ├── install_pydev_2.png │ │ │ │ ├── install_pydev_3.png │ │ │ │ ├── install_pydev_4.png │ │ │ │ ├── install_pydev_5.png │ │ │ │ ├── install_pydev_6.png │ │ │ │ ├── install_pydev_7.png │ │ │ │ ├── install_pydev_8.png │ │ │ │ ├── register_blender_to_eclipse_1.png │ │ │ │ ├── register_blender_to_eclipse_2.png │ │ │ │ ├── register_blender_to_eclipse_3.png │ │ │ │ ├── run_debug_server_1.png │ │ │ │ ├── run_debug_server_2.png │ │ │ │ ├── run_debug_server_3.png │ │ │ │ ├── run_debug_server_4.png │ │ │ │ ├── setup_eclipse_project_1.png │ │ │ │ ├── setup_eclipse_project_2.png │ │ │ │ ├── setup_eclipse_project_3.png │ │ │ │ ├── setup_eclipse_project_4.png │ │ │ │ ├── setup_eclipse_project_5.png │ │ │ │ ├── start_bp_debug_1.png │ │ │ │ ├── start_bp_debug_2.png │ │ │ │ ├── start_bp_debug_3.png │ │ │ │ ├── start_bp_debug_4.png │ │ │ │ ├── start_debug_1.png │ │ │ │ ├── start_debug_10.png │ │ │ │ ├── start_debug_11.png │ │ │ │ ├── start_debug_12.png │ │ │ │ ├── start_debug_13.png │ │ │ │ ├── start_debug_14.png │ │ │ │ ├── start_debug_2.png │ │ │ │ ├── start_debug_3.png │ │ │ │ ├── start_debug_4.png │ │ │ │ ├── start_debug_5.png │ │ │ │ ├── start_debug_6.png │ │ │ │ ├── start_debug_7.png │ │ │ │ ├── start_debug_8.png │ │ │ │ └── start_debug_9.png │ │ │ ├── 05_Test_Add-on_Automatically │ │ │ │ ├── check_test_failed_result_1.png │ │ │ │ ├── check_test_failed_result_2.png │ │ │ │ ├── check_test_result_1.png │ │ │ │ ├── check_test_result_2.png │ │ │ │ ├── check_test_result_3.png │ │ │ │ ├── link_to_travis_ci_1.png │ │ │ │ ├── link_to_travis_ci_2.png │ │ │ │ └── link_to_travis_ci_3.png │ │ │ └── 06_Commit_your_Add-on_to_Blender │ │ │ │ ├── create_diff_1.png │ │ │ │ ├── create_diff_2.png │ │ │ │ ├── create_diff_3.png │ │ │ │ ├── create_new_task_1.png │ │ │ │ └── create_new_task_2.png │ │ ├── chapter_05 │ │ │ ├── 01_Transform_Object_with_Keybord │ │ │ │ ├── use_add-on_1.png │ │ │ │ ├── use_add-on_2.png │ │ │ │ ├── use_add-on_3.png │ │ │ │ ├── use_add-on_4.png │ │ │ │ └── use_add-on_5.png │ │ │ ├── 02_Calculate_Working_Hour │ │ │ │ ├── use_add-on_1.png │ │ │ │ ├── use_add-on_2.png │ │ │ │ ├── use_add-on_3.png │ │ │ │ ├── use_add-on_4.png │ │ │ │ └── use_add-on_5.png │ │ │ ├── 03_Audio_Player │ │ │ │ ├── use_add-on_1.png │ │ │ │ ├── use_add-on_2.png │ │ │ │ ├── use_add-on_3.png │ │ │ │ ├── use_add-on_4.png │ │ │ │ └── use_add-on_5.png │ │ │ └── 04_Display_Object_Name │ │ │ │ ├── use_add-on_1.png │ │ │ │ ├── use_add-on_2.png │ │ │ │ ├── use_add-on_3.png │ │ │ │ ├── use_add-on_4.png │ │ │ │ └── use_add-on_5.png │ │ └── chapter_99 │ │ │ └── 00_Glossary │ │ │ └── window_region_area.png │ ├── js │ │ └── main.js │ ├── markdown │ │ ├── html │ │ │ ├── chapter_00 │ │ │ │ └── 00_Introduction.md │ │ │ ├── chapter_01 │ │ │ │ ├── 01_What_is_Blender_What_is_Add-on.md │ │ │ │ ├── 02_Use_Blender_Add-on.md │ │ │ │ ├── 03_Prepare_Add-on_development_environment.md │ │ │ │ ├── 04_Understand_Install_Uninstall_Update_Add-on.md │ │ │ │ ├── 05_Install_own_Add-on.md │ │ │ │ └── index.md │ │ │ ├── chapter_02 │ │ │ │ ├── 01_Basic_of_Add-on_Development.md │ │ │ │ ├── 02_Register_Multiple_Operation_Classes.md │ │ │ │ ├── 03_Use_Property_on_Tool_Shelf_1.md │ │ │ │ ├── 04_Use_Property_on_Tool_Shelf_2.md │ │ │ │ ├── 05_Create_Sub-menu.md │ │ │ │ ├── 06_Allocate_Shortcut_Keys.md │ │ │ │ ├── 07_Divide_Add-on_Source_into_Multiple_Files.md │ │ │ │ ├── 08_Control_Blender_UI_1.md │ │ │ │ ├── 09_Control_Blender_UI_2.md │ │ │ │ ├── 10_Control_Blender_UI_3.md │ │ │ │ └── index.md │ │ │ ├── chapter_03 │ │ │ │ ├── 01_Handle_Mouse_Click_Event.md │ │ │ │ ├── 02_Handle_Keyboard_Key_Event.md │ │ │ │ ├── 03_Handle_Timer_Event.md │ │ │ │ ├── 04_Use_API_for_OpenGL.md │ │ │ │ ├── 05_Render_String_with_blf_Module.md │ │ │ │ ├── 06_Play_Audio_File.md │ │ │ │ ├── 07_Multilingual_Support.md │ │ │ │ ├── 08_Use_Coordinate_Transformation_1.md │ │ │ │ ├── 09_Use_Coordinate_Transformation_2.md │ │ │ │ ├── 10_Use_User_Preference.md │ │ │ │ └── index.md │ │ │ ├── chapter_04 │ │ │ │ ├── 01_Research_official_Blender_API_for_Add-on.md │ │ │ │ ├── 02_Debug_Add-on.md │ │ │ │ ├── 03_Publish_your_Add-on.md │ │ │ │ ├── 04_Determine_License_of_Add-on.md │ │ │ │ ├── 05_Test_Add-on_Automatically.md │ │ │ │ ├── 06_Commit_your_Add-on_to_Blender.md │ │ │ │ └── index.md │ │ │ ├── chapter_05 │ │ │ │ ├── 01_Transform_Object_with_Keybord.md │ │ │ │ ├── 02_Calculate_Working_Hour.md │ │ │ │ ├── 03_Audio_Player.md │ │ │ │ ├── 04_Display_Object_Name.md │ │ │ │ └── index.md │ │ │ └── chapter_99 │ │ │ │ ├── 00_Glossary.md │ │ │ │ └── 01_Conclusion.md │ │ └── index.md │ ├── sample │ │ ├── chapter_01 │ │ │ └── sample_1_5.py │ │ ├── chapter_02 │ │ │ ├── sample_2_1.py │ │ │ ├── sample_2_10.py │ │ │ ├── sample_2_2.py │ │ │ ├── sample_2_3.py │ │ │ ├── sample_2_4.py │ │ │ ├── sample_2_5.py │ │ │ ├── sample_2_5_alt.py │ │ │ ├── sample_2_6.py │ │ │ ├── sample_2_7 │ │ │ │ ├── __init__.py │ │ │ │ ├── enlarge_object.py │ │ │ │ └── reduce_object.py │ │ │ ├── sample_2_8.py │ │ │ └── sample_2_9.py │ │ ├── chapter_03 │ │ │ ├── sample_3_1.py │ │ │ ├── sample_3_10.py │ │ │ ├── sample_3_2.py │ │ │ ├── sample_3_3.py │ │ │ ├── sample_3_4.py │ │ │ ├── sample_3_5.py │ │ │ ├── sample_3_6.py │ │ │ ├── sample_3_7.py │ │ │ ├── sample_3_8.py │ │ │ ├── sample_3_9.py │ │ │ ├── transform_w_view3d_utils.py │ │ │ └── transform_wo_view3d_utils.py │ │ ├── chapter_04 │ │ │ ├── sample_4_2 │ │ │ │ ├── debug.py │ │ │ │ ├── debuggee.py │ │ │ │ └── debuggee_2.py │ │ │ └── sample_4_5 │ │ │ │ ├── .travis.yml │ │ │ │ ├── test.py │ │ │ │ ├── test_alt.py │ │ │ │ └── testee.py │ │ └── chapter_05 │ │ │ ├── sample_5_1.py │ │ │ ├── sample_5_2.py │ │ │ ├── sample_5_3.py │ │ │ └── sample_5_4.py │ ├── scss │ │ ├── _fonts.scss │ │ ├── _utils.scss │ │ ├── _vars.scss │ │ ├── components │ │ │ ├── _body.scss │ │ │ └── _toc.scss │ │ └── style.scss │ └── templates │ │ ├── html5_template.html │ │ ├── metadata.yaml │ │ └── toc.json └── 2.8 │ ├── fonts │ └── NotoSansCJKjp-DemiLight-Subset.woff │ ├── images │ ├── chapter_01 │ │ ├── 01_What_Is_Blender_What_Is_Add-on │ │ │ ├── blender_add-on.png │ │ │ └── blender_startup.png │ │ ├── 02_Use_Blender_Add-on │ │ │ ├── disable_add-on_2.png │ │ │ ├── enable_add-on_2.png │ │ │ ├── enable_add-on_5.png │ │ │ ├── enable_add-on_6.png │ │ │ ├── localizing_into_japanese_1.png │ │ │ ├── localizing_into_japanese_3.png │ │ │ ├── localizing_into_japanese_4.png │ │ │ └── uninstall_add-on_2.png │ │ ├── 03_Prepare_Add-on_Development_Environment │ │ │ ├── blender_change_window_1.png │ │ │ ├── blender_change_window_2.png │ │ │ ├── blender_change_window_3.png │ │ │ ├── blender_change_window_4.png │ │ │ ├── blender_change_window_5.png │ │ │ ├── blender_change_window_6.png │ │ │ ├── blender_divide_window_1.png │ │ │ ├── blender_divide_window_2.png │ │ │ ├── blender_divide_window_3.png │ │ │ ├── blender_divide_window_4.png │ │ │ ├── blender_final.png │ │ │ ├── blender_initial.png │ │ │ ├── blender_read_factory_setting_1.png │ │ │ ├── blender_read_factory_setting_2.png │ │ │ ├── blender_save_startup_file_1.png │ │ │ └── blender_save_startup_file_2.png │ │ ├── 04_Understand_Install_Uninstall_Update_Add-on │ │ │ ├── install_1_use_default_add-on_installation_feature_1.png │ │ │ ├── install_1_use_default_add-on_installation_feature_2.png │ │ │ ├── install_1_use_default_add-on_installation_feature_3.png │ │ │ ├── install_1_use_default_add-on_installation_feature_4.png │ │ │ ├── install_1_use_default_add-on_installation_feature_5.png │ │ │ ├── install_2_deploy_to_blender_add-on_folder_2.png │ │ │ ├── install_2_deploy_to_blender_add-on_folder_3.png │ │ │ ├── uninstall_1_use_default_add-on_uninstallation_feature_1.png │ │ │ ├── uninstall_1_use_default_add-on_uninstallation_feature_2.png │ │ │ ├── uninstall_1_use_default_add-on_uninstallation_feature_3.png │ │ │ ├── uninstall_1_use_default_add-on_uninstallation_feature_4.png │ │ │ ├── uninstall_1_use_default_add-on_uninstallation_feature_5.png │ │ │ ├── uninstall_2_delete_sources_on_blender_add-on_folder_1.png │ │ │ ├── uninstall_2_delete_sources_on_blender_add-on_folder_2.png │ │ │ ├── uninstall_2_delete_sources_on_blender_add-on_folder_3.png │ │ │ ├── update_3_use_reload_scripts_2.png │ │ │ └── update_3_use_reload_scripts_3.png │ │ └── 05_Install_Own_Add-on │ │ │ ├── blender_disable_add-on.png │ │ │ ├── blender_enable_add-on_2.png │ │ │ ├── blender_enable_add-on_3.png │ │ │ ├── blender_make_add-on_2.png │ │ │ ├── blender_make_add-on_3.png │ │ │ ├── blender_make_add-on_4.png │ │ │ └── blender_make_add-on_5.png │ ├── chapter_02 │ │ ├── 01_Basic_Of_Add-on_Development │ │ │ ├── bl-info_1.png │ │ │ ├── bl-info_2.png │ │ │ ├── bl-info_3.png │ │ │ ├── bl-info_4.png │ │ │ ├── bl-info_5.png │ │ │ ├── bl-info_6.png │ │ │ ├── enable_add-on.png │ │ │ ├── find_API.png │ │ │ ├── generate_ico-sphere_1.png │ │ │ ├── generate_ico-sphere_2.png │ │ │ ├── operation_1.png │ │ │ ├── operation_2.png │ │ │ ├── run_script.png │ │ │ └── use_add-on_1.png │ │ ├── 02_Register_Multiple_Operators │ │ │ ├── enable_add-on.png │ │ │ ├── python_console_1.png │ │ │ ├── python_console_2.png │ │ │ ├── use_add-on_1.png │ │ │ └── use_add-on_2.png │ │ ├── 03_Use_Operator_Property │ │ │ ├── enable_add-on.png │ │ │ ├── operator_property.png │ │ │ ├── use_add-on_2.png │ │ │ └── use_add-on_3.png │ │ ├── 04_Create_Sub-menu │ │ │ ├── enable_add-on.png │ │ │ ├── multilevel_menu.png │ │ │ └── use_add-on_2.png │ │ └── 07_Control_Blender_UI │ │ │ ├── add-on_spec.png │ │ │ ├── change_blender_ui_1.png │ │ │ ├── change_blender_ui_2.png │ │ │ ├── change_blender_ui_3.png │ │ │ ├── change_blender_ui_4.png │ │ │ ├── change_blender_ui_5.png │ │ │ ├── change_blender_ui_6.png │ │ │ ├── ui_aligh_left.png │ │ │ ├── ui_aligh_right.png │ │ │ ├── ui_arrange_column_with_align.png │ │ │ ├── ui_arrange_column_without_align.png │ │ │ ├── ui_arrange_multi.png │ │ │ ├── ui_arrange_row_with_align.png │ │ │ ├── ui_arrange_row_without_align.png │ │ │ ├── ui_button.png │ │ │ ├── ui_checkbox.png │ │ │ ├── ui_dropdown_menu.png │ │ │ ├── ui_dropdown_property.png │ │ │ ├── ui_explicit_expantion.png │ │ │ ├── ui_grouping.png │ │ │ ├── ui_label.png │ │ │ ├── ui_split_region.png │ │ │ └── ui_textbox.png │ ├── chapter_03 │ │ ├── 01_Handle_Mouse_Event │ │ │ ├── enable_add-on_1.png │ │ │ ├── use_add-on_1.png │ │ │ ├── use_add-on_2.png │ │ │ └── use_add-on_3.png │ │ ├── 02_Handle_Keyboard_Event │ │ │ ├── enable_add-on.png │ │ │ ├── use_add-on_1.png │ │ │ ├── use_add-on_2.png │ │ │ └── use_add-on_3.png │ │ ├── 03_Handle_Timer_Event │ │ │ ├── enable_add-on.png │ │ │ ├── use_add-on_1.png │ │ │ ├── use_add-on_2.png │ │ │ └── use_add-on_3.png │ │ ├── 04_Draw_Figures │ │ │ ├── enable_addon.png │ │ │ ├── use_addon_1.png │ │ │ ├── use_addon_2.png │ │ │ ├── use_addon_3.png │ │ │ └── use_addon_4.png │ │ ├── 05_Draw_Texts │ │ │ ├── enable_add-on.png │ │ │ ├── use_add-on_1.png │ │ │ ├── use_add-on_2.png │ │ │ └── use_add-on_3.png │ │ ├── 06_Support_Multiple_Languages │ │ │ ├── use_add-on_1.png │ │ │ ├── use_add-on_2.png │ │ │ ├── use_add-on_3.png │ │ │ ├── use_add-on_4.png │ │ │ └── use_add-on_5.png │ │ ├── 07_Use_Preference │ │ │ ├── enable_add-on.png │ │ │ ├── preferences_1.png │ │ │ ├── preferences_2.png │ │ │ ├── use_add-on_1.png │ │ │ └── use_add-on_2.png │ │ └── 08_Use_Coordinate_Transformation │ │ │ ├── enable_add-on.png │ │ │ ├── use_add-on_2.png │ │ │ ├── use_add-on_3.png │ │ │ └── use_add-on_4.png │ ├── chapter_04 │ │ ├── 01_Research_Blender_API │ │ │ ├── move_to_api_reference_1.png │ │ │ ├── move_to_api_reference_2.png │ │ │ ├── read_addon_source_code.png │ │ │ ├── template_1.png │ │ │ └── template_2.png │ │ ├── 02_Debug_Add-on │ │ │ ├── attach_process.png │ │ │ └── configure_vscode.png │ │ └── 03_Code_Complete_Blender_API │ │ │ └── complete_blender_api.png │ └── chapter_05 │ │ ├── 01_Transform_Object_With_Keybord │ │ ├── use_add-on_1.png │ │ ├── use_add-on_2.png │ │ ├── use_add-on_3.png │ │ ├── use_add-on_4.png │ │ └── use_add-on_5.png │ │ ├── 02_Calculate_Working_Hour │ │ ├── use_add-on_1.png │ │ ├── use_add-on_2.png │ │ ├── use_add-on_3.png │ │ ├── use_add-on_4.png │ │ └── use_add-on_5.png │ │ └── 03_Display_Object_Name │ │ ├── use_add-on_1.png │ │ ├── use_add-on_2.png │ │ ├── use_add-on_3.png │ │ ├── use_add-on_4.png │ │ └── use_add-on_5.png │ ├── js │ └── main.js │ ├── markdown │ ├── html │ │ ├── chapter_00 │ │ │ └── 00_Introduction.md │ │ ├── chapter_01 │ │ │ ├── 01_What_Is_Blender_What_Is_Add-on.md │ │ │ ├── 02_Use_Blender_Add-on.md │ │ │ ├── 03_Prepare_Add-on_Development_Environment.md │ │ │ ├── 04_Understand_Install_Uninstall_Update_Add-on.md │ │ │ ├── 05_Install_Own_Add-on.md │ │ │ └── index.md │ │ ├── chapter_02 │ │ │ ├── 01_Basic_Of_Add-on_Development.md │ │ │ ├── 02_Register_Multiple_Operators.md │ │ │ ├── 03_Use_Operator_Property.md │ │ │ ├── 04_Create_Sub-menu.md │ │ │ ├── 05_Allocate_Shortcut_Keys.md │ │ │ ├── 06_Divide_Add-on_Source_Code_Into_Multiple_Files.md │ │ │ ├── 07_Control_Blender_UI.md │ │ │ └── index.md │ │ ├── chapter_03 │ │ │ ├── 01_Handle_Mouse_Event.md │ │ │ ├── 02_Handle_Keyboard_Event.md │ │ │ ├── 03_Handle_Timer_Event.md │ │ │ ├── 04_Draw_Figures.md │ │ │ ├── 05_Draw_Texts.md │ │ │ ├── 06_Support_Multiple_Languages.md │ │ │ ├── 07_Use_Preference.md │ │ │ ├── 08_Use_Coordinate_Transformation.md │ │ │ └── index.md │ │ ├── chapter_04 │ │ │ ├── 01_Research_Blender_API.md │ │ │ ├── 02_Debug_Add-on.md │ │ │ ├── 03_Code_Complete_Blender_API.md │ │ │ ├── 04_Determine_License.md │ │ │ ├── 05_Publish_Add-on.md │ │ │ └── index.md │ │ ├── chapter_05 │ │ │ ├── 01_Transform_Object_With_Keyboard.md │ │ │ ├── 02_Calculate_Working_Hour.md │ │ │ ├── 03_Display_Object_Name.md │ │ │ └── index.md │ │ └── chapter_99 │ │ │ ├── 00_Index.md │ │ │ └── 01_Conclusion.md │ └── index.md │ ├── sample │ ├── chapter_01 │ │ └── sample_1-5.py │ ├── chapter_02 │ │ ├── sample_2-1.py │ │ ├── sample_2-2.py │ │ ├── sample_2-3.py │ │ ├── sample_2-4.py │ │ ├── sample_2-4_alt.py │ │ ├── sample_2-5.py │ │ ├── sample_2-6 │ │ │ ├── __init__.py │ │ │ ├── backward_object.py │ │ │ └── forward_object.py │ │ └── sample_2-7.py │ ├── chapter_03 │ │ ├── sample_3-1.py │ │ ├── sample_3-2.py │ │ ├── sample_3-3.py │ │ ├── sample_3-4.py │ │ ├── sample_3-5.py │ │ ├── sample_3-6.py │ │ ├── sample_3-7.py │ │ └── sample_3-8.py │ └── chapter_05 │ │ ├── sample_5-1.py │ │ ├── sample_5-2.py │ │ └── sample_5-3.py │ ├── scss │ ├── _fonts.scss │ ├── _utils.scss │ ├── _vars.scss │ ├── components │ │ ├── _body.scss │ │ └── _toc.scss │ └── style.scss │ └── templates │ ├── html5_template.html │ ├── metadata.yaml │ └── toc.json ├── tests ├── Dockerfile ├── check_sample_code.sh ├── install_sample.sh └── test_sample.py └── tools ├── build.pl ├── build_sample.rb ├── check_url_link_breakage.js ├── embed_ad ├── embed_ad.pl ├── embed_ad.sh └── embed_ad_patterns.ini └── gen_word_index.js /.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [nutti] 2 | -------------------------------------------------------------------------------- /.github/workflows/blender-2.7-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/.github/workflows/blender-2.7-build.yml -------------------------------------------------------------------------------- /.github/workflows/blender-2.8-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/.github/workflows/blender-2.8-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/.gitignore -------------------------------------------------------------------------------- /.pep8: -------------------------------------------------------------------------------- 1 | [pep8] 2 | ignore = E711,W503 3 | -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/.pylintrc -------------------------------------------------------------------------------- /.textlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/.textlintrc -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'compass', '1.0.3' -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/README.md -------------------------------------------------------------------------------- /config/compass.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/config/compass.rb -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/package.json -------------------------------------------------------------------------------- /prh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/prh.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/2.7/fonts/NotoSansCJKjp-DemiLight-Subset.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/fonts/NotoSansCJKjp-DemiLight-Subset.woff -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/01_What_is_Blender_What_is_Add-on/blender_add-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/01_What_is_Blender_What_is_Add-on/blender_add-on.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/01_What_is_Blender_What_is_Add-on/blender_startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/01_What_is_Blender_What_is_Add-on/blender_startup.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/02_Use_Blender_Add-on/disable_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/02_Use_Blender_Add-on/disable_add-on_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/02_Use_Blender_Add-on/enable_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/02_Use_Blender_Add-on/enable_add-on_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/02_Use_Blender_Add-on/enable_add-on_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/02_Use_Blender_Add-on/enable_add-on_5.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/02_Use_Blender_Add-on/enable_add-on_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/02_Use_Blender_Add-on/enable_add-on_6.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/02_Use_Blender_Add-on/localizing_into_japanese_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/02_Use_Blender_Add-on/localizing_into_japanese_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/02_Use_Blender_Add-on/localizing_into_japanese_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/02_Use_Blender_Add-on/localizing_into_japanese_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/02_Use_Blender_Add-on/localizing_into_japanese_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/02_Use_Blender_Add-on/localizing_into_japanese_4.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/02_Use_Blender_Add-on/uninstall_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/02_Use_Blender_Add-on/uninstall_add-on_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/03_Prepare_Add-on_development_environment/blender_change_window_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/03_Prepare_Add-on_development_environment/blender_change_window_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/03_Prepare_Add-on_development_environment/blender_change_window_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/03_Prepare_Add-on_development_environment/blender_change_window_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/03_Prepare_Add-on_development_environment/blender_change_window_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/03_Prepare_Add-on_development_environment/blender_change_window_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/03_Prepare_Add-on_development_environment/blender_change_window_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/03_Prepare_Add-on_development_environment/blender_change_window_4.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/03_Prepare_Add-on_development_environment/blender_divide_window_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/03_Prepare_Add-on_development_environment/blender_divide_window_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/03_Prepare_Add-on_development_environment/blender_divide_window_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/03_Prepare_Add-on_development_environment/blender_divide_window_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/03_Prepare_Add-on_development_environment/blender_divide_window_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/03_Prepare_Add-on_development_environment/blender_divide_window_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/03_Prepare_Add-on_development_environment/blender_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/03_Prepare_Add-on_development_environment/blender_final.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/03_Prepare_Add-on_development_environment/blender_initial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/03_Prepare_Add-on_development_environment/blender_initial.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/03_Prepare_Add-on_development_environment/blender_read_factory_setting_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/03_Prepare_Add-on_development_environment/blender_read_factory_setting_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/03_Prepare_Add-on_development_environment/blender_read_factory_setting_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/03_Prepare_Add-on_development_environment/blender_read_factory_setting_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/03_Prepare_Add-on_development_environment/blender_save_startup_file_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/03_Prepare_Add-on_development_environment/blender_save_startup_file_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/03_Prepare_Add-on_development_environment/blender_save_startup_file_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/03_Prepare_Add-on_development_environment/blender_save_startup_file_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/03_Prepare_Add-on_development_environment/blender_show_console_window_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/03_Prepare_Add-on_development_environment/blender_show_console_window_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/install_1_use_default_add-on_installation_feature_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/install_1_use_default_add-on_installation_feature_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/install_1_use_default_add-on_installation_feature_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/install_1_use_default_add-on_installation_feature_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/install_1_use_default_add-on_installation_feature_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/install_1_use_default_add-on_installation_feature_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/install_1_use_default_add-on_installation_feature_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/install_1_use_default_add-on_installation_feature_4.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/install_1_use_default_add-on_installation_feature_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/install_1_use_default_add-on_installation_feature_5.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/install_2_deploy_to_blender_add-on_folder_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/install_2_deploy_to_blender_add-on_folder_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/install_2_deploy_to_blender_add-on_folder_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/install_2_deploy_to_blender_add-on_folder_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/install_2_deploy_to_blender_add-on_folder_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/install_2_deploy_to_blender_add-on_folder_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/uninstall_1_use_default_add-on_uninstallation_feature_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/uninstall_1_use_default_add-on_uninstallation_feature_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/uninstall_1_use_default_add-on_uninstallation_feature_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/uninstall_1_use_default_add-on_uninstallation_feature_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/uninstall_1_use_default_add-on_uninstallation_feature_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/uninstall_1_use_default_add-on_uninstallation_feature_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/uninstall_1_use_default_add-on_uninstallation_feature_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/uninstall_1_use_default_add-on_uninstallation_feature_4.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/uninstall_1_use_default_add-on_uninstallation_feature_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/uninstall_1_use_default_add-on_uninstallation_feature_5.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/uninstall_2_delete_sources_on_blender_add-on_folder_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/uninstall_2_delete_sources_on_blender_add-on_folder_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/uninstall_2_delete_sources_on_blender_add-on_folder_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/uninstall_2_delete_sources_on_blender_add-on_folder_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/uninstall_2_delete_sources_on_blender_add-on_folder_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/uninstall_2_delete_sources_on_blender_add-on_folder_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/update_3_use_reload_scripts_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/update_3_use_reload_scripts_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/update_3_use_reload_scripts_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/update_3_use_reload_scripts_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/05_Install_own_Add-on/blender_disable_add-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/05_Install_own_Add-on/blender_disable_add-on.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/05_Install_own_Add-on/blender_enable_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/05_Install_own_Add-on/blender_enable_add-on_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/05_Install_own_Add-on/blender_enable_add-on_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/05_Install_own_Add-on/blender_enable_add-on_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/05_Install_own_Add-on/blender_make_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/05_Install_own_Add-on/blender_make_add-on_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/05_Install_own_Add-on/blender_make_add-on_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/05_Install_own_Add-on/blender_make_add-on_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/05_Install_own_Add-on/blender_make_add-on_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/05_Install_own_Add-on/blender_make_add-on_4.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_01/05_Install_own_Add-on/blender_make_add-on_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_01/05_Install_own_Add-on/blender_make_add-on_5.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/01_Basic_of_Add-on_Development/bl-info_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/01_Basic_of_Add-on_Development/bl-info_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/01_Basic_of_Add-on_Development/bl-info_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/01_Basic_of_Add-on_Development/bl-info_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/01_Basic_of_Add-on_Development/bl-info_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/01_Basic_of_Add-on_Development/bl-info_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/01_Basic_of_Add-on_Development/bl-info_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/01_Basic_of_Add-on_Development/bl-info_4.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/01_Basic_of_Add-on_Development/bl-info_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/01_Basic_of_Add-on_Development/bl-info_5.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/01_Basic_of_Add-on_Development/bl-info_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/01_Basic_of_Add-on_Development/bl-info_6.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/01_Basic_of_Add-on_Development/enable_add-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/01_Basic_of_Add-on_Development/enable_add-on.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/01_Basic_of_Add-on_Development/find_API.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/01_Basic_of_Add-on_Development/find_API.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/01_Basic_of_Add-on_Development/generate_ico-sphere_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/01_Basic_of_Add-on_Development/generate_ico-sphere_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/01_Basic_of_Add-on_Development/generate_ico-sphere_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/01_Basic_of_Add-on_Development/generate_ico-sphere_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/01_Basic_of_Add-on_Development/operation_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/01_Basic_of_Add-on_Development/operation_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/01_Basic_of_Add-on_Development/operation_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/01_Basic_of_Add-on_Development/operation_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/01_Basic_of_Add-on_Development/run_script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/01_Basic_of_Add-on_Development/run_script.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/01_Basic_of_Add-on_Development/use_add-on_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/01_Basic_of_Add-on_Development/use_add-on_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/02_Register_Multiple_Operation_Classes/enable_add-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/02_Register_Multiple_Operation_Classes/enable_add-on.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/02_Register_Multiple_Operation_Classes/python_console_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/02_Register_Multiple_Operation_Classes/python_console_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/02_Register_Multiple_Operation_Classes/python_console_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/02_Register_Multiple_Operation_Classes/python_console_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/02_Register_Multiple_Operation_Classes/use_add-on_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/02_Register_Multiple_Operation_Classes/use_add-on_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/02_Register_Multiple_Operation_Classes/use_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/02_Register_Multiple_Operation_Classes/use_add-on_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/03_Use_Property_on_Tool_Shelf_1/enable_add-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/03_Use_Property_on_Tool_Shelf_1/enable_add-on.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/03_Use_Property_on_Tool_Shelf_1/tool-shelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/03_Use_Property_on_Tool_Shelf_1/tool-shelf.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/03_Use_Property_on_Tool_Shelf_1/use-add-on_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/03_Use_Property_on_Tool_Shelf_1/use-add-on_5.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/03_Use_Property_on_Tool_Shelf_1/use_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/03_Use_Property_on_Tool_Shelf_1/use_add-on_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/03_Use_Property_on_Tool_Shelf_1/use_add-on_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/03_Use_Property_on_Tool_Shelf_1/use_add-on_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/04_Use_Property_on_Tool_Shelf_2/option_subtype_acceleration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/04_Use_Property_on_Tool_Shelf_2/option_subtype_acceleration.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/04_Use_Property_on_Tool_Shelf_2/option_subtype_axisangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/04_Use_Property_on_Tool_Shelf_2/option_subtype_axisangle.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/04_Use_Property_on_Tool_Shelf_2/option_subtype_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/04_Use_Property_on_Tool_Shelf_2/option_subtype_color.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/04_Use_Property_on_Tool_Shelf_2/option_subtype_euler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/04_Use_Property_on_Tool_Shelf_2/option_subtype_euler.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/04_Use_Property_on_Tool_Shelf_2/option_subtype_none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/04_Use_Property_on_Tool_Shelf_2/option_subtype_none.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/04_Use_Property_on_Tool_Shelf_2/option_subtype_quaternion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/04_Use_Property_on_Tool_Shelf_2/option_subtype_quaternion.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/04_Use_Property_on_Tool_Shelf_2/option_subtype_translation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/04_Use_Property_on_Tool_Shelf_2/option_subtype_translation.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/04_Use_Property_on_Tool_Shelf_2/option_subtype_velocity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/04_Use_Property_on_Tool_Shelf_2/option_subtype_velocity.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/04_Use_Property_on_Tool_Shelf_2/option_subtype_xyz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/04_Use_Property_on_Tool_Shelf_2/option_subtype_xyz.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/04_Use_Property_on_Tool_Shelf_2/use_add-on_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/04_Use_Property_on_Tool_Shelf_2/use_add-on_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/04_Use_Property_on_Tool_Shelf_2/use_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/04_Use_Property_on_Tool_Shelf_2/use_add-on_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/05_Create_Sub-menu/multilevel_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/05_Create_Sub-menu/multilevel_menu.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/05_Create_Sub-menu/use_add-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/05_Create_Sub-menu/use_add-on.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/05_Create_Sub-menu/use_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/05_Create_Sub-menu/use_add-on_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/06_Allocate_Shortcut_Keys/use_add-on_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/06_Allocate_Shortcut_Keys/use_add-on_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/08_Control_Blender_UI_1/add-on_spec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/08_Control_Blender_UI_1/add-on_spec.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/08_Control_Blender_UI_1/control_UI_on_View3D_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/08_Control_Blender_UI_1/control_UI_on_View3D_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/08_Control_Blender_UI_1/control_UI_on_View3D_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/08_Control_Blender_UI_1/control_UI_on_View3D_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/08_Control_Blender_UI_1/control_UI_on_View3D_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/08_Control_Blender_UI_1/control_UI_on_View3D_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/08_Control_Blender_UI_1/control_UI_on_View3D_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/08_Control_Blender_UI_1/control_UI_on_View3D_4.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/08_Control_Blender_UI_1/control_UI_on_View3D_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/08_Control_Blender_UI_1/control_UI_on_View3D_5.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/08_Control_Blender_UI_1/control_UI_on_View3D_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/08_Control_Blender_UI_1/control_UI_on_View3D_6.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/09_Control_Blender_UI_2/add-on_spec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/09_Control_Blender_UI_2/add-on_spec.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/09_Control_Blender_UI_2/icon_list_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/09_Control_Blender_UI_2/icon_list_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/09_Control_Blender_UI_2/icon_list_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/09_Control_Blender_UI_2/icon_list_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/09_Control_Blender_UI_2/icon_list_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/09_Control_Blender_UI_2/icon_list_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/10_Control_Blender_UI_3/add-on_spec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/10_Control_Blender_UI_3/add-on_spec.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/10_Control_Blender_UI_3/confirm_popup_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/10_Control_Blender_UI_3/confirm_popup_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/10_Control_Blender_UI_3/confirm_popup_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/10_Control_Blender_UI_3/confirm_popup_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/10_Control_Blender_UI_3/dialog_menu_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/10_Control_Blender_UI_3/dialog_menu_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/10_Control_Blender_UI_3/dialog_menu_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/10_Control_Blender_UI_3/dialog_menu_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/10_Control_Blender_UI_3/dialog_menu_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/10_Control_Blender_UI_3/dialog_menu_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/10_Control_Blender_UI_3/dialog_menu_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/10_Control_Blender_UI_3/dialog_menu_4.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/10_Control_Blender_UI_3/file_browser_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/10_Control_Blender_UI_3/file_browser_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/10_Control_Blender_UI_3/file_browser_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/10_Control_Blender_UI_3/file_browser_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/10_Control_Blender_UI_3/popup_message_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/10_Control_Blender_UI_3/popup_message_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/10_Control_Blender_UI_3/popup_message_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/10_Control_Blender_UI_3/popup_message_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/10_Control_Blender_UI_3/prop_popup_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/10_Control_Blender_UI_3/prop_popup_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/10_Control_Blender_UI_3/prop_popup_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/10_Control_Blender_UI_3/prop_popup_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/10_Control_Blender_UI_3/search_popup_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/10_Control_Blender_UI_3/search_popup_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/10_Control_Blender_UI_3/search_popup_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/10_Control_Blender_UI_3/search_popup_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_02/10_Control_Blender_UI_3/search_popup_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_02/10_Control_Blender_UI_3/search_popup_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/01_Handle_Mouse_Click_Event/enable_add-on_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/01_Handle_Mouse_Click_Event/enable_add-on_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/01_Handle_Mouse_Click_Event/use_add-on_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/01_Handle_Mouse_Click_Event/use_add-on_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/01_Handle_Mouse_Click_Event/use_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/01_Handle_Mouse_Click_Event/use_add-on_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/01_Handle_Mouse_Click_Event/use_add-on_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/01_Handle_Mouse_Click_Event/use_add-on_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/01_Handle_Mouse_Click_Event/use_add-on_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/01_Handle_Mouse_Click_Event/use_add-on_4.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/02_Handle_Keyboard_Key_Event/enable_add-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/02_Handle_Keyboard_Key_Event/enable_add-on.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/02_Handle_Keyboard_Key_Event/use_add-on_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/02_Handle_Keyboard_Key_Event/use_add-on_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/02_Handle_Keyboard_Key_Event/use_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/02_Handle_Keyboard_Key_Event/use_add-on_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/03_Handle_Timer_Event/enable_add-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/03_Handle_Timer_Event/enable_add-on.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/03_Handle_Timer_Event/use_add-on-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/03_Handle_Timer_Event/use_add-on-2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/03_Handle_Timer_Event/use_add-on-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/03_Handle_Timer_Event/use_add-on-3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/03_Handle_Timer_Event/use_add-on_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/03_Handle_Timer_Event/use_add-on_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/04_Use_API_for_OpenGL/enable_addon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/04_Use_API_for_OpenGL/enable_addon.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/04_Use_API_for_OpenGL/region_coordinate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/04_Use_API_for_OpenGL/region_coordinate.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/04_Use_API_for_OpenGL/use_addon_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/04_Use_API_for_OpenGL/use_addon_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/04_Use_API_for_OpenGL/use_addon_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/04_Use_API_for_OpenGL/use_addon_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/04_Use_API_for_OpenGL/use_addon_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/04_Use_API_for_OpenGL/use_addon_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/04_Use_API_for_OpenGL/use_addon_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/04_Use_API_for_OpenGL/use_addon_4.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/04_Use_API_for_OpenGL/use_addon_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/04_Use_API_for_OpenGL/use_addon_5.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/05_Render_String_with_blf_Module/enable_add-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/05_Render_String_with_blf_Module/enable_add-on.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/05_Render_String_with_blf_Module/use_add-on_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/05_Render_String_with_blf_Module/use_add-on_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/05_Render_String_with_blf_Module/use_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/05_Render_String_with_blf_Module/use_add-on_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/05_Render_String_with_blf_Module/use_add-on_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/05_Render_String_with_blf_Module/use_add-on_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/06_Play_Audio_File/enable_add-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/06_Play_Audio_File/enable_add-on.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/06_Play_Audio_File/use_add-on_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/06_Play_Audio_File/use_add-on_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/06_Play_Audio_File/use_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/06_Play_Audio_File/use_add-on_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/06_Play_Audio_File/use_add-on_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/06_Play_Audio_File/use_add-on_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/06_Play_Audio_File/use_add-on_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/06_Play_Audio_File/use_add-on_4.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/06_Play_Audio_File/use_add-on_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/06_Play_Audio_File/use_add-on_5.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/07_Multilingual_Support/use_add-on_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/07_Multilingual_Support/use_add-on_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/07_Multilingual_Support/use_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/07_Multilingual_Support/use_add-on_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/07_Multilingual_Support/use_add-on_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/07_Multilingual_Support/use_add-on_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/07_Multilingual_Support/use_add-on_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/07_Multilingual_Support/use_add-on_4.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/07_Multilingual_Support/use_add-on_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/07_Multilingual_Support/use_add-on_5.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/08_Use_Coordinate_Transformation_1/coordinate_transformation_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/08_Use_Coordinate_Transformation_1/coordinate_transformation_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/08_Use_Coordinate_Transformation_1/coordinate_transformation_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/08_Use_Coordinate_Transformation_1/coordinate_transformation_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/08_Use_Coordinate_Transformation_1/coordinate_transformation_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/08_Use_Coordinate_Transformation_1/coordinate_transformation_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/08_Use_Coordinate_Transformation_1/enable_add-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/08_Use_Coordinate_Transformation_1/enable_add-on.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/08_Use_Coordinate_Transformation_1/use_add-on_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/08_Use_Coordinate_Transformation_1/use_add-on_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/08_Use_Coordinate_Transformation_1/use_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/08_Use_Coordinate_Transformation_1/use_add-on_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/08_Use_Coordinate_Transformation_1/use_add-on_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/08_Use_Coordinate_Transformation_1/use_add-on_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/09_Use_Coordinate_Transformation_2/enable_add-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/09_Use_Coordinate_Transformation_2/enable_add-on.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/09_Use_Coordinate_Transformation_2/ray_intersection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/09_Use_Coordinate_Transformation_2/ray_intersection.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/09_Use_Coordinate_Transformation_2/use_add-on_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/09_Use_Coordinate_Transformation_2/use_add-on_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/09_Use_Coordinate_Transformation_2/use_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/09_Use_Coordinate_Transformation_2/use_add-on_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/09_Use_Coordinate_Transformation_2/use_add-on_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/09_Use_Coordinate_Transformation_2/use_add-on_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/10_Use_User_Preference/enable_add-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/10_Use_User_Preference/enable_add-on.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/10_Use_User_Preference/use_add-on_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/10_Use_User_Preference/use_add-on_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/10_Use_User_Preference/use_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/10_Use_User_Preference/use_add-on_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/10_Use_User_Preference/user_preferences_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/10_Use_User_Preference/user_preferences_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_03/10_Use_User_Preference/user_preferences_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_03/10_Use_User_Preference/user_preferences_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/01_Research_official_Blender_API_for_Add-on/blender_api_doc_enum_property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/01_Research_official_Blender_API_for_Add-on/blender_api_doc_enum_property.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/01_Research_official_Blender_API_for_Add-on/python_console_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/01_Research_official_Blender_API_for_Add-on/python_console_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/01_Research_official_Blender_API_for_Add-on/python_console_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/01_Research_official_Blender_API_for_Add-on/python_console_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/01_Research_official_Blender_API_for_Add-on/python_console_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/01_Research_official_Blender_API_for_Add-on/python_console_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/01_Research_official_Blender_API_for_Add-on/read_addon_source_code_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/01_Research_official_Blender_API_for_Add-on/read_addon_source_code_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/01_Research_official_Blender_API_for_Add-on/read_addon_source_code_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/01_Research_official_Blender_API_for_Add-on/read_addon_source_code_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/01_Research_official_Blender_API_for_Add-on/read_addon_source_code_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/01_Research_official_Blender_API_for_Add-on/read_addon_source_code_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/01_Research_official_Blender_API_for_Add-on/read_addon_source_code_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/01_Research_official_Blender_API_for_Add-on/read_addon_source_code_4.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/01_Research_official_Blender_API_for_Add-on/read_addon_source_code_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/01_Research_official_Blender_API_for_Add-on/read_addon_source_code_5.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/01_Research_official_Blender_API_for_Add-on/template_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/01_Research_official_Blender_API_for_Add-on/template_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/01_Research_official_Blender_API_for_Add-on/template_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/01_Research_official_Blender_API_for_Add-on/template_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/configure_path_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/configure_path_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/configure_path_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/configure_path_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/configure_path_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/configure_path_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/configure_path_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/configure_path_4.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/enable_breakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/enable_breakpoint.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/install_pydev_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/install_pydev_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/install_pydev_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/install_pydev_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/install_pydev_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/install_pydev_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/install_pydev_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/install_pydev_4.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/install_pydev_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/install_pydev_5.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/install_pydev_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/install_pydev_6.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/install_pydev_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/install_pydev_7.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/install_pydev_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/install_pydev_8.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/register_blender_to_eclipse_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/register_blender_to_eclipse_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/register_blender_to_eclipse_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/register_blender_to_eclipse_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/register_blender_to_eclipse_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/register_blender_to_eclipse_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/run_debug_server_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/run_debug_server_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/run_debug_server_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/run_debug_server_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/run_debug_server_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/run_debug_server_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/run_debug_server_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/run_debug_server_4.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/setup_eclipse_project_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/setup_eclipse_project_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/setup_eclipse_project_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/setup_eclipse_project_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/setup_eclipse_project_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/setup_eclipse_project_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/setup_eclipse_project_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/setup_eclipse_project_4.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/setup_eclipse_project_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/setup_eclipse_project_5.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/start_bp_debug_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/start_bp_debug_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/start_bp_debug_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/start_bp_debug_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/start_bp_debug_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/start_bp_debug_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/start_bp_debug_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/start_bp_debug_4.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/start_debug_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/start_debug_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/start_debug_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/start_debug_10.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/start_debug_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/start_debug_11.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/start_debug_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/start_debug_12.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/start_debug_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/start_debug_13.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/start_debug_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/start_debug_14.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/start_debug_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/start_debug_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/start_debug_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/start_debug_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/start_debug_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/start_debug_4.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/start_debug_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/start_debug_5.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/start_debug_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/start_debug_6.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/start_debug_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/start_debug_7.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/start_debug_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/start_debug_8.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/02_Debug_Add-on/start_debug_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/02_Debug_Add-on/start_debug_9.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/05_Test_Add-on_Automatically/check_test_failed_result_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/05_Test_Add-on_Automatically/check_test_failed_result_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/05_Test_Add-on_Automatically/check_test_failed_result_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/05_Test_Add-on_Automatically/check_test_failed_result_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/05_Test_Add-on_Automatically/check_test_result_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/05_Test_Add-on_Automatically/check_test_result_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/05_Test_Add-on_Automatically/check_test_result_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/05_Test_Add-on_Automatically/check_test_result_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/05_Test_Add-on_Automatically/check_test_result_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/05_Test_Add-on_Automatically/check_test_result_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/05_Test_Add-on_Automatically/link_to_travis_ci_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/05_Test_Add-on_Automatically/link_to_travis_ci_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/05_Test_Add-on_Automatically/link_to_travis_ci_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/05_Test_Add-on_Automatically/link_to_travis_ci_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/05_Test_Add-on_Automatically/link_to_travis_ci_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/05_Test_Add-on_Automatically/link_to_travis_ci_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/06_Commit_your_Add-on_to_Blender/create_diff_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/06_Commit_your_Add-on_to_Blender/create_diff_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/06_Commit_your_Add-on_to_Blender/create_diff_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/06_Commit_your_Add-on_to_Blender/create_diff_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/06_Commit_your_Add-on_to_Blender/create_diff_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/06_Commit_your_Add-on_to_Blender/create_diff_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/06_Commit_your_Add-on_to_Blender/create_new_task_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/06_Commit_your_Add-on_to_Blender/create_new_task_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_04/06_Commit_your_Add-on_to_Blender/create_new_task_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_04/06_Commit_your_Add-on_to_Blender/create_new_task_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_05/01_Transform_Object_with_Keybord/use_add-on_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_05/01_Transform_Object_with_Keybord/use_add-on_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_05/01_Transform_Object_with_Keybord/use_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_05/01_Transform_Object_with_Keybord/use_add-on_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_05/01_Transform_Object_with_Keybord/use_add-on_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_05/01_Transform_Object_with_Keybord/use_add-on_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_05/01_Transform_Object_with_Keybord/use_add-on_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_05/01_Transform_Object_with_Keybord/use_add-on_4.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_05/01_Transform_Object_with_Keybord/use_add-on_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_05/01_Transform_Object_with_Keybord/use_add-on_5.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_05/02_Calculate_Working_Hour/use_add-on_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_05/02_Calculate_Working_Hour/use_add-on_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_05/02_Calculate_Working_Hour/use_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_05/02_Calculate_Working_Hour/use_add-on_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_05/02_Calculate_Working_Hour/use_add-on_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_05/02_Calculate_Working_Hour/use_add-on_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_05/02_Calculate_Working_Hour/use_add-on_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_05/02_Calculate_Working_Hour/use_add-on_4.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_05/02_Calculate_Working_Hour/use_add-on_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_05/02_Calculate_Working_Hour/use_add-on_5.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_05/03_Audio_Player/use_add-on_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_05/03_Audio_Player/use_add-on_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_05/03_Audio_Player/use_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_05/03_Audio_Player/use_add-on_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_05/03_Audio_Player/use_add-on_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_05/03_Audio_Player/use_add-on_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_05/03_Audio_Player/use_add-on_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_05/03_Audio_Player/use_add-on_4.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_05/03_Audio_Player/use_add-on_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_05/03_Audio_Player/use_add-on_5.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_05/04_Display_Object_Name/use_add-on_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_05/04_Display_Object_Name/use_add-on_1.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_05/04_Display_Object_Name/use_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_05/04_Display_Object_Name/use_add-on_2.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_05/04_Display_Object_Name/use_add-on_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_05/04_Display_Object_Name/use_add-on_3.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_05/04_Display_Object_Name/use_add-on_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_05/04_Display_Object_Name/use_add-on_4.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_05/04_Display_Object_Name/use_add-on_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_05/04_Display_Object_Name/use_add-on_5.png -------------------------------------------------------------------------------- /src/2.7/images/chapter_99/00_Glossary/window_region_area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/images/chapter_99/00_Glossary/window_region_area.png -------------------------------------------------------------------------------- /src/2.7/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/js/main.js -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_00/00_Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_00/00_Introduction.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_01/01_What_is_Blender_What_is_Add-on.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_01/01_What_is_Blender_What_is_Add-on.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_01/02_Use_Blender_Add-on.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_01/02_Use_Blender_Add-on.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_01/03_Prepare_Add-on_development_environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_01/03_Prepare_Add-on_development_environment.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_01/04_Understand_Install_Uninstall_Update_Add-on.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_01/04_Understand_Install_Uninstall_Update_Add-on.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_01/05_Install_own_Add-on.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_01/05_Install_own_Add-on.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_01/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_01/index.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_02/01_Basic_of_Add-on_Development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_02/01_Basic_of_Add-on_Development.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_02/02_Register_Multiple_Operation_Classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_02/02_Register_Multiple_Operation_Classes.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_02/03_Use_Property_on_Tool_Shelf_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_02/03_Use_Property_on_Tool_Shelf_1.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_02/04_Use_Property_on_Tool_Shelf_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_02/04_Use_Property_on_Tool_Shelf_2.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_02/05_Create_Sub-menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_02/05_Create_Sub-menu.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_02/06_Allocate_Shortcut_Keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_02/06_Allocate_Shortcut_Keys.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_02/07_Divide_Add-on_Source_into_Multiple_Files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_02/07_Divide_Add-on_Source_into_Multiple_Files.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_02/08_Control_Blender_UI_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_02/08_Control_Blender_UI_1.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_02/09_Control_Blender_UI_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_02/09_Control_Blender_UI_2.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_02/10_Control_Blender_UI_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_02/10_Control_Blender_UI_3.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_02/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_02/index.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_03/01_Handle_Mouse_Click_Event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_03/01_Handle_Mouse_Click_Event.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_03/02_Handle_Keyboard_Key_Event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_03/02_Handle_Keyboard_Key_Event.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_03/03_Handle_Timer_Event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_03/03_Handle_Timer_Event.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_03/04_Use_API_for_OpenGL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_03/04_Use_API_for_OpenGL.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_03/05_Render_String_with_blf_Module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_03/05_Render_String_with_blf_Module.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_03/06_Play_Audio_File.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_03/06_Play_Audio_File.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_03/07_Multilingual_Support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_03/07_Multilingual_Support.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_03/08_Use_Coordinate_Transformation_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_03/08_Use_Coordinate_Transformation_1.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_03/09_Use_Coordinate_Transformation_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_03/09_Use_Coordinate_Transformation_2.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_03/10_Use_User_Preference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_03/10_Use_User_Preference.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_03/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_03/index.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_04/01_Research_official_Blender_API_for_Add-on.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_04/01_Research_official_Blender_API_for_Add-on.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_04/02_Debug_Add-on.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_04/02_Debug_Add-on.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_04/03_Publish_your_Add-on.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_04/03_Publish_your_Add-on.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_04/04_Determine_License_of_Add-on.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_04/04_Determine_License_of_Add-on.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_04/05_Test_Add-on_Automatically.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_04/05_Test_Add-on_Automatically.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_04/06_Commit_your_Add-on_to_Blender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_04/06_Commit_your_Add-on_to_Blender.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_04/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_04/index.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_05/01_Transform_Object_with_Keybord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_05/01_Transform_Object_with_Keybord.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_05/02_Calculate_Working_Hour.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_05/02_Calculate_Working_Hour.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_05/03_Audio_Player.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_05/03_Audio_Player.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_05/04_Display_Object_Name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_05/04_Display_Object_Name.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_05/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_05/index.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_99/00_Glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_99/00_Glossary.md -------------------------------------------------------------------------------- /src/2.7/markdown/html/chapter_99/01_Conclusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/html/chapter_99/01_Conclusion.md -------------------------------------------------------------------------------- /src/2.7/markdown/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/markdown/index.md -------------------------------------------------------------------------------- /src/2.7/sample/chapter_01/sample_1_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_01/sample_1_5.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_02/sample_2_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_02/sample_2_1.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_02/sample_2_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_02/sample_2_10.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_02/sample_2_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_02/sample_2_2.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_02/sample_2_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_02/sample_2_3.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_02/sample_2_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_02/sample_2_4.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_02/sample_2_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_02/sample_2_5.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_02/sample_2_5_alt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_02/sample_2_5_alt.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_02/sample_2_6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_02/sample_2_6.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_02/sample_2_7/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_02/sample_2_7/__init__.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_02/sample_2_7/enlarge_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_02/sample_2_7/enlarge_object.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_02/sample_2_7/reduce_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_02/sample_2_7/reduce_object.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_02/sample_2_8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_02/sample_2_8.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_02/sample_2_9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_02/sample_2_9.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_03/sample_3_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_03/sample_3_1.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_03/sample_3_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_03/sample_3_10.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_03/sample_3_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_03/sample_3_2.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_03/sample_3_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_03/sample_3_3.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_03/sample_3_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_03/sample_3_4.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_03/sample_3_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_03/sample_3_5.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_03/sample_3_6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_03/sample_3_6.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_03/sample_3_7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_03/sample_3_7.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_03/sample_3_8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_03/sample_3_8.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_03/sample_3_9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_03/sample_3_9.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_03/transform_w_view3d_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_03/transform_w_view3d_utils.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_03/transform_wo_view3d_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_03/transform_wo_view3d_utils.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_04/sample_4_2/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_04/sample_4_2/debug.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_04/sample_4_2/debuggee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_04/sample_4_2/debuggee.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_04/sample_4_2/debuggee_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_04/sample_4_2/debuggee_2.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_04/sample_4_5/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_04/sample_4_5/.travis.yml -------------------------------------------------------------------------------- /src/2.7/sample/chapter_04/sample_4_5/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_04/sample_4_5/test.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_04/sample_4_5/test_alt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_04/sample_4_5/test_alt.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_04/sample_4_5/testee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_04/sample_4_5/testee.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_05/sample_5_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_05/sample_5_1.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_05/sample_5_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_05/sample_5_2.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_05/sample_5_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_05/sample_5_3.py -------------------------------------------------------------------------------- /src/2.7/sample/chapter_05/sample_5_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/sample/chapter_05/sample_5_4.py -------------------------------------------------------------------------------- /src/2.7/scss/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/scss/_fonts.scss -------------------------------------------------------------------------------- /src/2.7/scss/_utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/scss/_utils.scss -------------------------------------------------------------------------------- /src/2.7/scss/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/scss/_vars.scss -------------------------------------------------------------------------------- /src/2.7/scss/components/_body.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/scss/components/_body.scss -------------------------------------------------------------------------------- /src/2.7/scss/components/_toc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/scss/components/_toc.scss -------------------------------------------------------------------------------- /src/2.7/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/scss/style.scss -------------------------------------------------------------------------------- /src/2.7/templates/html5_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/templates/html5_template.html -------------------------------------------------------------------------------- /src/2.7/templates/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/templates/metadata.yaml -------------------------------------------------------------------------------- /src/2.7/templates/toc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.7/templates/toc.json -------------------------------------------------------------------------------- /src/2.8/fonts/NotoSansCJKjp-DemiLight-Subset.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/fonts/NotoSansCJKjp-DemiLight-Subset.woff -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/01_What_Is_Blender_What_Is_Add-on/blender_add-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/01_What_Is_Blender_What_Is_Add-on/blender_add-on.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/01_What_Is_Blender_What_Is_Add-on/blender_startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/01_What_Is_Blender_What_Is_Add-on/blender_startup.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/02_Use_Blender_Add-on/disable_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/02_Use_Blender_Add-on/disable_add-on_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/02_Use_Blender_Add-on/enable_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/02_Use_Blender_Add-on/enable_add-on_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/02_Use_Blender_Add-on/enable_add-on_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/02_Use_Blender_Add-on/enable_add-on_5.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/02_Use_Blender_Add-on/enable_add-on_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/02_Use_Blender_Add-on/enable_add-on_6.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/02_Use_Blender_Add-on/localizing_into_japanese_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/02_Use_Blender_Add-on/localizing_into_japanese_1.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/02_Use_Blender_Add-on/localizing_into_japanese_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/02_Use_Blender_Add-on/localizing_into_japanese_3.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/02_Use_Blender_Add-on/localizing_into_japanese_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/02_Use_Blender_Add-on/localizing_into_japanese_4.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/02_Use_Blender_Add-on/uninstall_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/02_Use_Blender_Add-on/uninstall_add-on_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/03_Prepare_Add-on_Development_Environment/blender_change_window_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/03_Prepare_Add-on_Development_Environment/blender_change_window_1.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/03_Prepare_Add-on_Development_Environment/blender_change_window_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/03_Prepare_Add-on_Development_Environment/blender_change_window_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/03_Prepare_Add-on_Development_Environment/blender_change_window_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/03_Prepare_Add-on_Development_Environment/blender_change_window_3.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/03_Prepare_Add-on_Development_Environment/blender_change_window_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/03_Prepare_Add-on_Development_Environment/blender_change_window_4.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/03_Prepare_Add-on_Development_Environment/blender_change_window_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/03_Prepare_Add-on_Development_Environment/blender_change_window_5.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/03_Prepare_Add-on_Development_Environment/blender_change_window_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/03_Prepare_Add-on_Development_Environment/blender_change_window_6.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/03_Prepare_Add-on_Development_Environment/blender_divide_window_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/03_Prepare_Add-on_Development_Environment/blender_divide_window_1.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/03_Prepare_Add-on_Development_Environment/blender_divide_window_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/03_Prepare_Add-on_Development_Environment/blender_divide_window_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/03_Prepare_Add-on_Development_Environment/blender_divide_window_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/03_Prepare_Add-on_Development_Environment/blender_divide_window_3.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/03_Prepare_Add-on_Development_Environment/blender_divide_window_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/03_Prepare_Add-on_Development_Environment/blender_divide_window_4.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/03_Prepare_Add-on_Development_Environment/blender_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/03_Prepare_Add-on_Development_Environment/blender_final.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/03_Prepare_Add-on_Development_Environment/blender_initial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/03_Prepare_Add-on_Development_Environment/blender_initial.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/03_Prepare_Add-on_Development_Environment/blender_read_factory_setting_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/03_Prepare_Add-on_Development_Environment/blender_read_factory_setting_1.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/03_Prepare_Add-on_Development_Environment/blender_read_factory_setting_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/03_Prepare_Add-on_Development_Environment/blender_read_factory_setting_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/03_Prepare_Add-on_Development_Environment/blender_save_startup_file_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/03_Prepare_Add-on_Development_Environment/blender_save_startup_file_1.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/03_Prepare_Add-on_Development_Environment/blender_save_startup_file_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/03_Prepare_Add-on_Development_Environment/blender_save_startup_file_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/install_1_use_default_add-on_installation_feature_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/install_1_use_default_add-on_installation_feature_1.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/install_1_use_default_add-on_installation_feature_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/install_1_use_default_add-on_installation_feature_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/install_1_use_default_add-on_installation_feature_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/install_1_use_default_add-on_installation_feature_3.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/install_1_use_default_add-on_installation_feature_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/install_1_use_default_add-on_installation_feature_4.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/install_1_use_default_add-on_installation_feature_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/install_1_use_default_add-on_installation_feature_5.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/install_2_deploy_to_blender_add-on_folder_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/install_2_deploy_to_blender_add-on_folder_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/install_2_deploy_to_blender_add-on_folder_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/install_2_deploy_to_blender_add-on_folder_3.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/uninstall_1_use_default_add-on_uninstallation_feature_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/uninstall_1_use_default_add-on_uninstallation_feature_1.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/uninstall_1_use_default_add-on_uninstallation_feature_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/uninstall_1_use_default_add-on_uninstallation_feature_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/uninstall_1_use_default_add-on_uninstallation_feature_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/uninstall_1_use_default_add-on_uninstallation_feature_3.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/uninstall_1_use_default_add-on_uninstallation_feature_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/uninstall_1_use_default_add-on_uninstallation_feature_4.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/uninstall_1_use_default_add-on_uninstallation_feature_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/uninstall_1_use_default_add-on_uninstallation_feature_5.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/uninstall_2_delete_sources_on_blender_add-on_folder_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/uninstall_2_delete_sources_on_blender_add-on_folder_1.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/uninstall_2_delete_sources_on_blender_add-on_folder_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/uninstall_2_delete_sources_on_blender_add-on_folder_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/uninstall_2_delete_sources_on_blender_add-on_folder_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/uninstall_2_delete_sources_on_blender_add-on_folder_3.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/update_3_use_reload_scripts_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/update_3_use_reload_scripts_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/update_3_use_reload_scripts_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/04_Understand_Install_Uninstall_Update_Add-on/update_3_use_reload_scripts_3.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/05_Install_Own_Add-on/blender_disable_add-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/05_Install_Own_Add-on/blender_disable_add-on.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/05_Install_Own_Add-on/blender_enable_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/05_Install_Own_Add-on/blender_enable_add-on_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/05_Install_Own_Add-on/blender_enable_add-on_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/05_Install_Own_Add-on/blender_enable_add-on_3.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/05_Install_Own_Add-on/blender_make_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/05_Install_Own_Add-on/blender_make_add-on_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/05_Install_Own_Add-on/blender_make_add-on_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/05_Install_Own_Add-on/blender_make_add-on_3.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/05_Install_Own_Add-on/blender_make_add-on_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/05_Install_Own_Add-on/blender_make_add-on_4.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_01/05_Install_Own_Add-on/blender_make_add-on_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_01/05_Install_Own_Add-on/blender_make_add-on_5.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/01_Basic_Of_Add-on_Development/bl-info_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/01_Basic_Of_Add-on_Development/bl-info_1.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/01_Basic_Of_Add-on_Development/bl-info_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/01_Basic_Of_Add-on_Development/bl-info_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/01_Basic_Of_Add-on_Development/bl-info_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/01_Basic_Of_Add-on_Development/bl-info_3.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/01_Basic_Of_Add-on_Development/bl-info_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/01_Basic_Of_Add-on_Development/bl-info_4.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/01_Basic_Of_Add-on_Development/bl-info_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/01_Basic_Of_Add-on_Development/bl-info_5.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/01_Basic_Of_Add-on_Development/bl-info_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/01_Basic_Of_Add-on_Development/bl-info_6.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/01_Basic_Of_Add-on_Development/enable_add-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/01_Basic_Of_Add-on_Development/enable_add-on.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/01_Basic_Of_Add-on_Development/find_API.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/01_Basic_Of_Add-on_Development/find_API.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/01_Basic_Of_Add-on_Development/generate_ico-sphere_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/01_Basic_Of_Add-on_Development/generate_ico-sphere_1.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/01_Basic_Of_Add-on_Development/generate_ico-sphere_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/01_Basic_Of_Add-on_Development/generate_ico-sphere_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/01_Basic_Of_Add-on_Development/operation_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/01_Basic_Of_Add-on_Development/operation_1.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/01_Basic_Of_Add-on_Development/operation_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/01_Basic_Of_Add-on_Development/operation_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/01_Basic_Of_Add-on_Development/run_script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/01_Basic_Of_Add-on_Development/run_script.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/01_Basic_Of_Add-on_Development/use_add-on_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/01_Basic_Of_Add-on_Development/use_add-on_1.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/02_Register_Multiple_Operators/enable_add-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/02_Register_Multiple_Operators/enable_add-on.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/02_Register_Multiple_Operators/python_console_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/02_Register_Multiple_Operators/python_console_1.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/02_Register_Multiple_Operators/python_console_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/02_Register_Multiple_Operators/python_console_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/02_Register_Multiple_Operators/use_add-on_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/02_Register_Multiple_Operators/use_add-on_1.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/02_Register_Multiple_Operators/use_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/02_Register_Multiple_Operators/use_add-on_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/03_Use_Operator_Property/enable_add-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/03_Use_Operator_Property/enable_add-on.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/03_Use_Operator_Property/operator_property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/03_Use_Operator_Property/operator_property.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/03_Use_Operator_Property/use_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/03_Use_Operator_Property/use_add-on_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/03_Use_Operator_Property/use_add-on_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/03_Use_Operator_Property/use_add-on_3.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/04_Create_Sub-menu/enable_add-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/04_Create_Sub-menu/enable_add-on.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/04_Create_Sub-menu/multilevel_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/04_Create_Sub-menu/multilevel_menu.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/04_Create_Sub-menu/use_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/04_Create_Sub-menu/use_add-on_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/07_Control_Blender_UI/add-on_spec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/07_Control_Blender_UI/add-on_spec.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/07_Control_Blender_UI/change_blender_ui_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/07_Control_Blender_UI/change_blender_ui_1.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/07_Control_Blender_UI/change_blender_ui_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/07_Control_Blender_UI/change_blender_ui_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/07_Control_Blender_UI/change_blender_ui_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/07_Control_Blender_UI/change_blender_ui_3.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/07_Control_Blender_UI/change_blender_ui_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/07_Control_Blender_UI/change_blender_ui_4.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/07_Control_Blender_UI/change_blender_ui_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/07_Control_Blender_UI/change_blender_ui_5.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/07_Control_Blender_UI/change_blender_ui_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/07_Control_Blender_UI/change_blender_ui_6.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/07_Control_Blender_UI/ui_aligh_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/07_Control_Blender_UI/ui_aligh_left.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/07_Control_Blender_UI/ui_aligh_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/07_Control_Blender_UI/ui_aligh_right.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/07_Control_Blender_UI/ui_arrange_column_with_align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/07_Control_Blender_UI/ui_arrange_column_with_align.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/07_Control_Blender_UI/ui_arrange_column_without_align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/07_Control_Blender_UI/ui_arrange_column_without_align.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/07_Control_Blender_UI/ui_arrange_multi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/07_Control_Blender_UI/ui_arrange_multi.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/07_Control_Blender_UI/ui_arrange_row_with_align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/07_Control_Blender_UI/ui_arrange_row_with_align.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/07_Control_Blender_UI/ui_arrange_row_without_align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/07_Control_Blender_UI/ui_arrange_row_without_align.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/07_Control_Blender_UI/ui_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/07_Control_Blender_UI/ui_button.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/07_Control_Blender_UI/ui_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/07_Control_Blender_UI/ui_checkbox.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/07_Control_Blender_UI/ui_dropdown_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/07_Control_Blender_UI/ui_dropdown_menu.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/07_Control_Blender_UI/ui_dropdown_property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/07_Control_Blender_UI/ui_dropdown_property.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/07_Control_Blender_UI/ui_explicit_expantion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/07_Control_Blender_UI/ui_explicit_expantion.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/07_Control_Blender_UI/ui_grouping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/07_Control_Blender_UI/ui_grouping.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/07_Control_Blender_UI/ui_label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/07_Control_Blender_UI/ui_label.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/07_Control_Blender_UI/ui_split_region.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/07_Control_Blender_UI/ui_split_region.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_02/07_Control_Blender_UI/ui_textbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_02/07_Control_Blender_UI/ui_textbox.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/01_Handle_Mouse_Event/enable_add-on_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/01_Handle_Mouse_Event/enable_add-on_1.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/01_Handle_Mouse_Event/use_add-on_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/01_Handle_Mouse_Event/use_add-on_1.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/01_Handle_Mouse_Event/use_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/01_Handle_Mouse_Event/use_add-on_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/01_Handle_Mouse_Event/use_add-on_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/01_Handle_Mouse_Event/use_add-on_3.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/02_Handle_Keyboard_Event/enable_add-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/02_Handle_Keyboard_Event/enable_add-on.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/02_Handle_Keyboard_Event/use_add-on_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/02_Handle_Keyboard_Event/use_add-on_1.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/02_Handle_Keyboard_Event/use_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/02_Handle_Keyboard_Event/use_add-on_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/02_Handle_Keyboard_Event/use_add-on_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/02_Handle_Keyboard_Event/use_add-on_3.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/03_Handle_Timer_Event/enable_add-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/03_Handle_Timer_Event/enable_add-on.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/03_Handle_Timer_Event/use_add-on_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/03_Handle_Timer_Event/use_add-on_1.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/03_Handle_Timer_Event/use_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/03_Handle_Timer_Event/use_add-on_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/03_Handle_Timer_Event/use_add-on_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/03_Handle_Timer_Event/use_add-on_3.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/04_Draw_Figures/enable_addon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/04_Draw_Figures/enable_addon.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/04_Draw_Figures/use_addon_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/04_Draw_Figures/use_addon_1.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/04_Draw_Figures/use_addon_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/04_Draw_Figures/use_addon_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/04_Draw_Figures/use_addon_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/04_Draw_Figures/use_addon_3.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/04_Draw_Figures/use_addon_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/04_Draw_Figures/use_addon_4.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/05_Draw_Texts/enable_add-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/05_Draw_Texts/enable_add-on.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/05_Draw_Texts/use_add-on_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/05_Draw_Texts/use_add-on_1.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/05_Draw_Texts/use_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/05_Draw_Texts/use_add-on_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/05_Draw_Texts/use_add-on_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/05_Draw_Texts/use_add-on_3.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/06_Support_Multiple_Languages/use_add-on_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/06_Support_Multiple_Languages/use_add-on_1.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/06_Support_Multiple_Languages/use_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/06_Support_Multiple_Languages/use_add-on_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/06_Support_Multiple_Languages/use_add-on_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/06_Support_Multiple_Languages/use_add-on_3.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/06_Support_Multiple_Languages/use_add-on_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/06_Support_Multiple_Languages/use_add-on_4.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/06_Support_Multiple_Languages/use_add-on_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/06_Support_Multiple_Languages/use_add-on_5.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/07_Use_Preference/enable_add-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/07_Use_Preference/enable_add-on.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/07_Use_Preference/preferences_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/07_Use_Preference/preferences_1.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/07_Use_Preference/preferences_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/07_Use_Preference/preferences_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/07_Use_Preference/use_add-on_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/07_Use_Preference/use_add-on_1.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/07_Use_Preference/use_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/07_Use_Preference/use_add-on_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/08_Use_Coordinate_Transformation/enable_add-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/08_Use_Coordinate_Transformation/enable_add-on.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/08_Use_Coordinate_Transformation/use_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/08_Use_Coordinate_Transformation/use_add-on_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/08_Use_Coordinate_Transformation/use_add-on_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/08_Use_Coordinate_Transformation/use_add-on_3.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_03/08_Use_Coordinate_Transformation/use_add-on_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_03/08_Use_Coordinate_Transformation/use_add-on_4.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_04/01_Research_Blender_API/move_to_api_reference_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_04/01_Research_Blender_API/move_to_api_reference_1.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_04/01_Research_Blender_API/move_to_api_reference_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_04/01_Research_Blender_API/move_to_api_reference_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_04/01_Research_Blender_API/read_addon_source_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_04/01_Research_Blender_API/read_addon_source_code.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_04/01_Research_Blender_API/template_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_04/01_Research_Blender_API/template_1.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_04/01_Research_Blender_API/template_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_04/01_Research_Blender_API/template_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_04/02_Debug_Add-on/attach_process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_04/02_Debug_Add-on/attach_process.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_04/02_Debug_Add-on/configure_vscode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_04/02_Debug_Add-on/configure_vscode.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_04/03_Code_Complete_Blender_API/complete_blender_api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_04/03_Code_Complete_Blender_API/complete_blender_api.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_05/01_Transform_Object_With_Keybord/use_add-on_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_05/01_Transform_Object_With_Keybord/use_add-on_1.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_05/01_Transform_Object_With_Keybord/use_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_05/01_Transform_Object_With_Keybord/use_add-on_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_05/01_Transform_Object_With_Keybord/use_add-on_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_05/01_Transform_Object_With_Keybord/use_add-on_3.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_05/01_Transform_Object_With_Keybord/use_add-on_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_05/01_Transform_Object_With_Keybord/use_add-on_4.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_05/01_Transform_Object_With_Keybord/use_add-on_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_05/01_Transform_Object_With_Keybord/use_add-on_5.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_05/02_Calculate_Working_Hour/use_add-on_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_05/02_Calculate_Working_Hour/use_add-on_1.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_05/02_Calculate_Working_Hour/use_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_05/02_Calculate_Working_Hour/use_add-on_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_05/02_Calculate_Working_Hour/use_add-on_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_05/02_Calculate_Working_Hour/use_add-on_3.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_05/02_Calculate_Working_Hour/use_add-on_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_05/02_Calculate_Working_Hour/use_add-on_4.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_05/02_Calculate_Working_Hour/use_add-on_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_05/02_Calculate_Working_Hour/use_add-on_5.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_05/03_Display_Object_Name/use_add-on_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_05/03_Display_Object_Name/use_add-on_1.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_05/03_Display_Object_Name/use_add-on_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_05/03_Display_Object_Name/use_add-on_2.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_05/03_Display_Object_Name/use_add-on_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_05/03_Display_Object_Name/use_add-on_3.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_05/03_Display_Object_Name/use_add-on_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_05/03_Display_Object_Name/use_add-on_4.png -------------------------------------------------------------------------------- /src/2.8/images/chapter_05/03_Display_Object_Name/use_add-on_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/images/chapter_05/03_Display_Object_Name/use_add-on_5.png -------------------------------------------------------------------------------- /src/2.8/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/js/main.js -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_00/00_Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_00/00_Introduction.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_01/01_What_Is_Blender_What_Is_Add-on.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_01/01_What_Is_Blender_What_Is_Add-on.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_01/02_Use_Blender_Add-on.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_01/02_Use_Blender_Add-on.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_01/03_Prepare_Add-on_Development_Environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_01/03_Prepare_Add-on_Development_Environment.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_01/04_Understand_Install_Uninstall_Update_Add-on.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_01/04_Understand_Install_Uninstall_Update_Add-on.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_01/05_Install_Own_Add-on.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_01/05_Install_Own_Add-on.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_01/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_01/index.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_02/01_Basic_Of_Add-on_Development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_02/01_Basic_Of_Add-on_Development.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_02/02_Register_Multiple_Operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_02/02_Register_Multiple_Operators.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_02/03_Use_Operator_Property.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_02/03_Use_Operator_Property.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_02/04_Create_Sub-menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_02/04_Create_Sub-menu.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_02/05_Allocate_Shortcut_Keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_02/05_Allocate_Shortcut_Keys.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_02/06_Divide_Add-on_Source_Code_Into_Multiple_Files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_02/06_Divide_Add-on_Source_Code_Into_Multiple_Files.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_02/07_Control_Blender_UI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_02/07_Control_Blender_UI.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_02/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_02/index.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_03/01_Handle_Mouse_Event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_03/01_Handle_Mouse_Event.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_03/02_Handle_Keyboard_Event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_03/02_Handle_Keyboard_Event.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_03/03_Handle_Timer_Event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_03/03_Handle_Timer_Event.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_03/04_Draw_Figures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_03/04_Draw_Figures.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_03/05_Draw_Texts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_03/05_Draw_Texts.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_03/06_Support_Multiple_Languages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_03/06_Support_Multiple_Languages.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_03/07_Use_Preference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_03/07_Use_Preference.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_03/08_Use_Coordinate_Transformation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_03/08_Use_Coordinate_Transformation.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_03/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_03/index.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_04/01_Research_Blender_API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_04/01_Research_Blender_API.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_04/02_Debug_Add-on.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_04/02_Debug_Add-on.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_04/03_Code_Complete_Blender_API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_04/03_Code_Complete_Blender_API.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_04/04_Determine_License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_04/04_Determine_License.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_04/05_Publish_Add-on.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_04/05_Publish_Add-on.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_04/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_04/index.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_05/01_Transform_Object_With_Keyboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_05/01_Transform_Object_With_Keyboard.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_05/02_Calculate_Working_Hour.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_05/02_Calculate_Working_Hour.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_05/03_Display_Object_Name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_05/03_Display_Object_Name.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_05/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_05/index.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_99/00_Index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_99/00_Index.md -------------------------------------------------------------------------------- /src/2.8/markdown/html/chapter_99/01_Conclusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/html/chapter_99/01_Conclusion.md -------------------------------------------------------------------------------- /src/2.8/markdown/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/markdown/index.md -------------------------------------------------------------------------------- /src/2.8/sample/chapter_01/sample_1-5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/sample/chapter_01/sample_1-5.py -------------------------------------------------------------------------------- /src/2.8/sample/chapter_02/sample_2-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/sample/chapter_02/sample_2-1.py -------------------------------------------------------------------------------- /src/2.8/sample/chapter_02/sample_2-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/sample/chapter_02/sample_2-2.py -------------------------------------------------------------------------------- /src/2.8/sample/chapter_02/sample_2-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/sample/chapter_02/sample_2-3.py -------------------------------------------------------------------------------- /src/2.8/sample/chapter_02/sample_2-4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/sample/chapter_02/sample_2-4.py -------------------------------------------------------------------------------- /src/2.8/sample/chapter_02/sample_2-4_alt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/sample/chapter_02/sample_2-4_alt.py -------------------------------------------------------------------------------- /src/2.8/sample/chapter_02/sample_2-5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/sample/chapter_02/sample_2-5.py -------------------------------------------------------------------------------- /src/2.8/sample/chapter_02/sample_2-6/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/sample/chapter_02/sample_2-6/__init__.py -------------------------------------------------------------------------------- /src/2.8/sample/chapter_02/sample_2-6/backward_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/sample/chapter_02/sample_2-6/backward_object.py -------------------------------------------------------------------------------- /src/2.8/sample/chapter_02/sample_2-6/forward_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/sample/chapter_02/sample_2-6/forward_object.py -------------------------------------------------------------------------------- /src/2.8/sample/chapter_02/sample_2-7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/sample/chapter_02/sample_2-7.py -------------------------------------------------------------------------------- /src/2.8/sample/chapter_03/sample_3-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/sample/chapter_03/sample_3-1.py -------------------------------------------------------------------------------- /src/2.8/sample/chapter_03/sample_3-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/sample/chapter_03/sample_3-2.py -------------------------------------------------------------------------------- /src/2.8/sample/chapter_03/sample_3-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/sample/chapter_03/sample_3-3.py -------------------------------------------------------------------------------- /src/2.8/sample/chapter_03/sample_3-4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/sample/chapter_03/sample_3-4.py -------------------------------------------------------------------------------- /src/2.8/sample/chapter_03/sample_3-5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/sample/chapter_03/sample_3-5.py -------------------------------------------------------------------------------- /src/2.8/sample/chapter_03/sample_3-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/sample/chapter_03/sample_3-6.py -------------------------------------------------------------------------------- /src/2.8/sample/chapter_03/sample_3-7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/sample/chapter_03/sample_3-7.py -------------------------------------------------------------------------------- /src/2.8/sample/chapter_03/sample_3-8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/sample/chapter_03/sample_3-8.py -------------------------------------------------------------------------------- /src/2.8/sample/chapter_05/sample_5-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/sample/chapter_05/sample_5-1.py -------------------------------------------------------------------------------- /src/2.8/sample/chapter_05/sample_5-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/sample/chapter_05/sample_5-2.py -------------------------------------------------------------------------------- /src/2.8/sample/chapter_05/sample_5-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/sample/chapter_05/sample_5-3.py -------------------------------------------------------------------------------- /src/2.8/scss/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/scss/_fonts.scss -------------------------------------------------------------------------------- /src/2.8/scss/_utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/scss/_utils.scss -------------------------------------------------------------------------------- /src/2.8/scss/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/scss/_vars.scss -------------------------------------------------------------------------------- /src/2.8/scss/components/_body.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/scss/components/_body.scss -------------------------------------------------------------------------------- /src/2.8/scss/components/_toc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/scss/components/_toc.scss -------------------------------------------------------------------------------- /src/2.8/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/scss/style.scss -------------------------------------------------------------------------------- /src/2.8/templates/html5_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/templates/html5_template.html -------------------------------------------------------------------------------- /src/2.8/templates/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/templates/metadata.yaml -------------------------------------------------------------------------------- /src/2.8/templates/toc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/src/2.8/templates/toc.json -------------------------------------------------------------------------------- /tests/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/tests/Dockerfile -------------------------------------------------------------------------------- /tests/check_sample_code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/tests/check_sample_code.sh -------------------------------------------------------------------------------- /tests/install_sample.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/tests/install_sample.sh -------------------------------------------------------------------------------- /tests/test_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/tests/test_sample.py -------------------------------------------------------------------------------- /tools/build.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/tools/build.pl -------------------------------------------------------------------------------- /tools/build_sample.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/tools/build_sample.rb -------------------------------------------------------------------------------- /tools/check_url_link_breakage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/tools/check_url_link_breakage.js -------------------------------------------------------------------------------- /tools/embed_ad/embed_ad.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/tools/embed_ad/embed_ad.pl -------------------------------------------------------------------------------- /tools/embed_ad/embed_ad.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/tools/embed_ad/embed_ad.sh -------------------------------------------------------------------------------- /tools/embed_ad/embed_ad_patterns.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/tools/embed_ad/embed_ad_patterns.ini -------------------------------------------------------------------------------- /tools/gen_word_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nutti/Introduction-to-Addon-Development-in-Blender-Web/HEAD/tools/gen_word_index.js --------------------------------------------------------------------------------