├── .gitignore ├── BONE_PT_constraints.py ├── BONE_PT_context_bone.py ├── BONE_PT_display.py ├── BONE_PT_inverse_kinematics.py ├── BONE_PT_relations.py ├── BONE_PT_transform.py ├── CYCLES_RENDER_PT_bake.py ├── DATA_PT_bone_groups.py ├── DATA_PT_geometry_curve.py ├── DATA_PT_modifiers.py ├── DATA_PT_pose_library.py ├── DATA_PT_shape_curve.py ├── DATA_PT_shape_keys.py ├── DATA_PT_skeleton.py ├── DATA_PT_uv_texture.py ├── DATA_PT_vertex_colors.py ├── DATA_PT_vertex_groups.py ├── DOPESHEET_MT_key.py ├── IMAGE_MT_image.py ├── IMAGE_MT_select.py ├── IMAGE_MT_uvs.py ├── IMAGE_MT_view.py ├── INFO_HT_header.py ├── KeysList.csv ├── MATERIAL_MT_context_menu.py ├── MESH_MT_shape_key_context_menu.py ├── MESH_MT_vertex_group_context_menu.py ├── MirrorMirrorTool.py ├── NODE_MT_node.py ├── NODE_MT_view.py ├── OBJECT_PT_context_object.py ├── OBJECT_PT_display.py ├── OBJECT_PT_transform.py ├── PHYSICS_PT_cloth.py ├── PHYSICS_PT_dynamic_paint.py ├── PHYSICS_PT_field.py ├── PHYSICS_PT_rigid_body.py ├── PHYSICS_PT_rigid_body_constraint.py ├── PHYSICS_PT_softbody.py ├── PROPERTIES_HT_header.py ├── README.md ├── RENDER_PT_context.py ├── SCENE_PT_rigid_body_world.py ├── ShortcutHtmlKeysData.csv ├── ShortcutHtmlKeysImage.png ├── ShortcutHtmlTemp.html ├── ShortcutHtmlTemplate.html ├── TEXTURE_PT_image.py ├── TEXT_MT_text.py ├── TOPBAR_MT_file.py ├── TOPBAR_MT_file_external_data.py ├── TOPBAR_MT_help.py ├── TOPBAR_MT_render.py ├── TOPBAR_MT_window.py ├── TranslationDictionary.csv ├── USERPREF_PT_file_paths_applications.py ├── USERPREF_PT_navigation_bar.py ├── VIEW3D_MT_armature_context_menu.py ├── VIEW3D_MT_bone_options_toggle.py ├── VIEW3D_MT_edit_armature.py ├── VIEW3D_MT_edit_mesh.py ├── VIEW3D_MT_edit_mesh_context_menu.py ├── VIEW3D_MT_edit_mesh_delete.py ├── VIEW3D_MT_edit_mesh_showhide.py ├── VIEW3D_MT_edit_mesh_vertices.py ├── VIEW3D_MT_make_links.py ├── VIEW3D_MT_mesh_add.py ├── VIEW3D_MT_object.py ├── VIEW3D_MT_object_context_menu.py ├── VIEW3D_MT_object_showhide.py ├── VIEW3D_MT_paint_weight.py ├── VIEW3D_MT_pose_constraints.py ├── VIEW3D_MT_pose_context_menu.py ├── VIEW3D_MT_pose_showhide.py ├── VIEW3D_MT_select_edit_armature.py ├── VIEW3D_MT_select_edit_mesh.py ├── VIEW3D_MT_select_object.py ├── VIEW3D_MT_select_pose.py ├── VIEW3D_MT_snap.py ├── VIEW3D_MT_uv_map.py ├── VIEW3D_MT_view.py ├── VIEW3D_MT_view_align.py ├── VIEW3D_MT_view_align_selected.py ├── VIEW3D_PT_collections.py ├── VIEW3D_PT_transform_orientations.py ├── VIEW3D_PT_view3d_cursor.py ├── VIEW3D_PT_view3d_name.py ├── VIEW3D_PT_view3d_properties.py ├── __init__.py ├── console_toggle.py ├── mirrormirror.py ├── old_TranslationDictionary.csv └── undisplay_commands.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | desktop.ini 3 | -------------------------------------------------------------------------------- /BONE_PT_constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/BONE_PT_constraints.py -------------------------------------------------------------------------------- /BONE_PT_context_bone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/BONE_PT_context_bone.py -------------------------------------------------------------------------------- /BONE_PT_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/BONE_PT_display.py -------------------------------------------------------------------------------- /BONE_PT_inverse_kinematics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/BONE_PT_inverse_kinematics.py -------------------------------------------------------------------------------- /BONE_PT_relations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/BONE_PT_relations.py -------------------------------------------------------------------------------- /BONE_PT_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/BONE_PT_transform.py -------------------------------------------------------------------------------- /CYCLES_RENDER_PT_bake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/CYCLES_RENDER_PT_bake.py -------------------------------------------------------------------------------- /DATA_PT_bone_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/DATA_PT_bone_groups.py -------------------------------------------------------------------------------- /DATA_PT_geometry_curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/DATA_PT_geometry_curve.py -------------------------------------------------------------------------------- /DATA_PT_modifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/DATA_PT_modifiers.py -------------------------------------------------------------------------------- /DATA_PT_pose_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/DATA_PT_pose_library.py -------------------------------------------------------------------------------- /DATA_PT_shape_curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/DATA_PT_shape_curve.py -------------------------------------------------------------------------------- /DATA_PT_shape_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/DATA_PT_shape_keys.py -------------------------------------------------------------------------------- /DATA_PT_skeleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/DATA_PT_skeleton.py -------------------------------------------------------------------------------- /DATA_PT_uv_texture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/DATA_PT_uv_texture.py -------------------------------------------------------------------------------- /DATA_PT_vertex_colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/DATA_PT_vertex_colors.py -------------------------------------------------------------------------------- /DATA_PT_vertex_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/DATA_PT_vertex_groups.py -------------------------------------------------------------------------------- /DOPESHEET_MT_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/DOPESHEET_MT_key.py -------------------------------------------------------------------------------- /IMAGE_MT_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/IMAGE_MT_image.py -------------------------------------------------------------------------------- /IMAGE_MT_select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/IMAGE_MT_select.py -------------------------------------------------------------------------------- /IMAGE_MT_uvs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/IMAGE_MT_uvs.py -------------------------------------------------------------------------------- /IMAGE_MT_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/IMAGE_MT_view.py -------------------------------------------------------------------------------- /INFO_HT_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/INFO_HT_header.py -------------------------------------------------------------------------------- /KeysList.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/KeysList.csv -------------------------------------------------------------------------------- /MATERIAL_MT_context_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/MATERIAL_MT_context_menu.py -------------------------------------------------------------------------------- /MESH_MT_shape_key_context_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/MESH_MT_shape_key_context_menu.py -------------------------------------------------------------------------------- /MESH_MT_vertex_group_context_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/MESH_MT_vertex_group_context_menu.py -------------------------------------------------------------------------------- /MirrorMirrorTool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/MirrorMirrorTool.py -------------------------------------------------------------------------------- /NODE_MT_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/NODE_MT_node.py -------------------------------------------------------------------------------- /NODE_MT_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/NODE_MT_view.py -------------------------------------------------------------------------------- /OBJECT_PT_context_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/OBJECT_PT_context_object.py -------------------------------------------------------------------------------- /OBJECT_PT_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/OBJECT_PT_display.py -------------------------------------------------------------------------------- /OBJECT_PT_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/OBJECT_PT_transform.py -------------------------------------------------------------------------------- /PHYSICS_PT_cloth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/PHYSICS_PT_cloth.py -------------------------------------------------------------------------------- /PHYSICS_PT_dynamic_paint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/PHYSICS_PT_dynamic_paint.py -------------------------------------------------------------------------------- /PHYSICS_PT_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/PHYSICS_PT_field.py -------------------------------------------------------------------------------- /PHYSICS_PT_rigid_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/PHYSICS_PT_rigid_body.py -------------------------------------------------------------------------------- /PHYSICS_PT_rigid_body_constraint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/PHYSICS_PT_rigid_body_constraint.py -------------------------------------------------------------------------------- /PHYSICS_PT_softbody.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/PHYSICS_PT_softbody.py -------------------------------------------------------------------------------- /PROPERTIES_HT_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/PROPERTIES_HT_header.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/README.md -------------------------------------------------------------------------------- /RENDER_PT_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/RENDER_PT_context.py -------------------------------------------------------------------------------- /SCENE_PT_rigid_body_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/SCENE_PT_rigid_body_world.py -------------------------------------------------------------------------------- /ShortcutHtmlKeysData.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/ShortcutHtmlKeysData.csv -------------------------------------------------------------------------------- /ShortcutHtmlKeysImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/ShortcutHtmlKeysImage.png -------------------------------------------------------------------------------- /ShortcutHtmlTemp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/ShortcutHtmlTemp.html -------------------------------------------------------------------------------- /ShortcutHtmlTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/ShortcutHtmlTemplate.html -------------------------------------------------------------------------------- /TEXTURE_PT_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/TEXTURE_PT_image.py -------------------------------------------------------------------------------- /TEXT_MT_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/TEXT_MT_text.py -------------------------------------------------------------------------------- /TOPBAR_MT_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/TOPBAR_MT_file.py -------------------------------------------------------------------------------- /TOPBAR_MT_file_external_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/TOPBAR_MT_file_external_data.py -------------------------------------------------------------------------------- /TOPBAR_MT_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/TOPBAR_MT_help.py -------------------------------------------------------------------------------- /TOPBAR_MT_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/TOPBAR_MT_render.py -------------------------------------------------------------------------------- /TOPBAR_MT_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/TOPBAR_MT_window.py -------------------------------------------------------------------------------- /TranslationDictionary.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/TranslationDictionary.csv -------------------------------------------------------------------------------- /USERPREF_PT_file_paths_applications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/USERPREF_PT_file_paths_applications.py -------------------------------------------------------------------------------- /USERPREF_PT_navigation_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/USERPREF_PT_navigation_bar.py -------------------------------------------------------------------------------- /VIEW3D_MT_armature_context_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/VIEW3D_MT_armature_context_menu.py -------------------------------------------------------------------------------- /VIEW3D_MT_bone_options_toggle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/VIEW3D_MT_bone_options_toggle.py -------------------------------------------------------------------------------- /VIEW3D_MT_edit_armature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/VIEW3D_MT_edit_armature.py -------------------------------------------------------------------------------- /VIEW3D_MT_edit_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/VIEW3D_MT_edit_mesh.py -------------------------------------------------------------------------------- /VIEW3D_MT_edit_mesh_context_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/VIEW3D_MT_edit_mesh_context_menu.py -------------------------------------------------------------------------------- /VIEW3D_MT_edit_mesh_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/VIEW3D_MT_edit_mesh_delete.py -------------------------------------------------------------------------------- /VIEW3D_MT_edit_mesh_showhide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/VIEW3D_MT_edit_mesh_showhide.py -------------------------------------------------------------------------------- /VIEW3D_MT_edit_mesh_vertices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/VIEW3D_MT_edit_mesh_vertices.py -------------------------------------------------------------------------------- /VIEW3D_MT_make_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/VIEW3D_MT_make_links.py -------------------------------------------------------------------------------- /VIEW3D_MT_mesh_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/VIEW3D_MT_mesh_add.py -------------------------------------------------------------------------------- /VIEW3D_MT_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/VIEW3D_MT_object.py -------------------------------------------------------------------------------- /VIEW3D_MT_object_context_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/VIEW3D_MT_object_context_menu.py -------------------------------------------------------------------------------- /VIEW3D_MT_object_showhide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/VIEW3D_MT_object_showhide.py -------------------------------------------------------------------------------- /VIEW3D_MT_paint_weight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/VIEW3D_MT_paint_weight.py -------------------------------------------------------------------------------- /VIEW3D_MT_pose_constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/VIEW3D_MT_pose_constraints.py -------------------------------------------------------------------------------- /VIEW3D_MT_pose_context_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/VIEW3D_MT_pose_context_menu.py -------------------------------------------------------------------------------- /VIEW3D_MT_pose_showhide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/VIEW3D_MT_pose_showhide.py -------------------------------------------------------------------------------- /VIEW3D_MT_select_edit_armature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/VIEW3D_MT_select_edit_armature.py -------------------------------------------------------------------------------- /VIEW3D_MT_select_edit_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/VIEW3D_MT_select_edit_mesh.py -------------------------------------------------------------------------------- /VIEW3D_MT_select_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/VIEW3D_MT_select_object.py -------------------------------------------------------------------------------- /VIEW3D_MT_select_pose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/VIEW3D_MT_select_pose.py -------------------------------------------------------------------------------- /VIEW3D_MT_snap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/VIEW3D_MT_snap.py -------------------------------------------------------------------------------- /VIEW3D_MT_uv_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/VIEW3D_MT_uv_map.py -------------------------------------------------------------------------------- /VIEW3D_MT_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/VIEW3D_MT_view.py -------------------------------------------------------------------------------- /VIEW3D_MT_view_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/VIEW3D_MT_view_align.py -------------------------------------------------------------------------------- /VIEW3D_MT_view_align_selected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/VIEW3D_MT_view_align_selected.py -------------------------------------------------------------------------------- /VIEW3D_PT_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/VIEW3D_PT_collections.py -------------------------------------------------------------------------------- /VIEW3D_PT_transform_orientations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/VIEW3D_PT_transform_orientations.py -------------------------------------------------------------------------------- /VIEW3D_PT_view3d_cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/VIEW3D_PT_view3d_cursor.py -------------------------------------------------------------------------------- /VIEW3D_PT_view3d_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/VIEW3D_PT_view3d_name.py -------------------------------------------------------------------------------- /VIEW3D_PT_view3d_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/VIEW3D_PT_view3d_properties.py -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/__init__.py -------------------------------------------------------------------------------- /console_toggle.py: -------------------------------------------------------------------------------- 1 | import bpy 2 | bpy.ops.wm.console_toggle() 3 | -------------------------------------------------------------------------------- /mirrormirror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/mirrormirror.py -------------------------------------------------------------------------------- /old_TranslationDictionary.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/old_TranslationDictionary.csv -------------------------------------------------------------------------------- /undisplay_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bookyakuno/Blender-Scramble-Addon/HEAD/undisplay_commands.py --------------------------------------------------------------------------------