EasyWeight: Major update #317

Merged
Demeter Dzadik merged 9 commits from easyweight-updates into main 2024-06-25 21:09:03 +02:00
22 changed files with 32 additions and 32 deletions
Showing only changes of commit 9a7d7514f5 - Show all commits

View File

@ -135,7 +135,7 @@ export default defineConfig({
], ],
}, },
{ text: 'Contact Sheet', link: '/addons/contactsheet'}, { text: 'Contact Sheet', link: '/addons/contactsheet'},
{ text: 'Easy Weights', link: '/addons/easy_weights'}, { text: 'Easy Weight', link: '/addons/easy_weight'},
{ text: 'Geonode Shapekeys', link: '/addons/geonode_shapekeys'}, { text: 'Geonode Shapekeys', link: '/addons/geonode_shapekeys'},
{ text: 'Grease Converter', link: '/addons/grease_converter'}, { text: 'Grease Converter', link: '/addons/grease_converter'},
{ text: 'Lattice Magic', link: '/addons/lattice_magic'}, { text: 'Lattice Magic', link: '/addons/lattice_magic'},

View File

@ -0,0 +1 @@
<!--@include: ../../scripts-blender/addons/easy_weight/README.md-->

View File

@ -1 +0,0 @@
<!--@include: ../../scripts-blender/addons/easy_weights/README.md-->

View File

@ -22,7 +22,7 @@ The facial rigging is usually done with Rigify's [Action set-up system](https://
## Weight Painting ## Weight Painting
Weight painting character meshes to the generated rig has so far happened simply manually, as there hasn't been a need to mass-produce characters with high quality deformation. Still, the **Easy Weight** add-on helps to make this manual weight painting workflow efficient with some custom UI, and less error-prone with a rogue weight checking system. There is also a short tutorial series about my weight painting workflow, which also includes a section about this add-on specifically. Weight painting character meshes to the generated rig has so far happened simply manually, as there hasn't been a need to mass-produce characters with high quality deformation. Still, the **Easy Weight** add-on helps to make this manual weight painting workflow efficient with some custom UI, and less error-prone with a rogue weight checking system. There is also a short tutorial series about my weight painting workflow, which also includes a section about this add-on specifically.
* [Download Easy Weights](https://studio.blender.org/pipeline/addons/easy_weights) * [Download Easy Weights](https://studio.blender.org/pipeline/addons/easy_weight)
* [Weight Painting Course](https://studio.blender.org/training/weight-painting/) * [Weight Painting Course](https://studio.blender.org/training/weight-painting/)
## Corrective Shape Keys ## Corrective Shape Keys

View File

@ -1,23 +1,23 @@
## 0.1.4 - 2023-10-31 ## 0.1.4 - 2023-10-31
### FIXED ### FIXED
- Fix a crash in hotkeys.py - Fix a crash in hotkeys.py
- Upgrade to Blender 4.0 - Upgrade to Blender 4.0
- EasyWeight console warnings & more - EasyWeight console warnings & more
- Catch an error (not sure of cause yet) - Catch an error (not sure of cause yet)
- Update hotkey registration code - Update hotkey registration code
- Use consistent registration pattern - Use consistent registration pattern
### REMOVED ### REMOVED
- Remove hotkeys for painting. - Remove hotkeys for painting.
## 0.1.2 - 2023-08-02 ## 0.1.2 - 2023-08-02
### FIXED ### FIXED
- Fix Changelog Rendering (#125) - Fix Changelog Rendering (#125)
- Fix Addon Install Instructions - Fix Addon Install Instructions
## 0.1.1 - 2023-06-02 ## 0.1.1 - 2023-06-02
## DOCUMENTED ## DOCUMENTED
- Initial release - Initial release

View File

@ -1,7 +1,7 @@
# Easy Weights # Easy Weight
Easy Weights is an addon focused on quality of life improvements for weight painting in Blender. Easy Weight is an addon focused on quality of life improvements for weight painting in Blender.
## Table of Contents ## Table of Contents

View File

@ -12,14 +12,14 @@ import bpy
import importlib import importlib
bl_info = { bl_info = {
"name": "Easy Weights", "name": "Easy Weight",
"author": "Demeter Dzadik", "author": "Demeter Dzadik",
"version": (1, 0, 0), "version": (1, 0, 0),
"blender": (4, 2, 0), "blender": (4, 2, 0),
"location": "Weight Paint > Weights > Easy Weights", "location": "3D View -> Sidebar -> Easy Weight",
"description": "Operators to make weight painting easier.", "description": "Operators to make weight painting easier.",
"category": "Rigging", "category": "Rigging",
"doc_url": "https://studio.blender.org/pipeline/addons/easy_weights", "doc_url": "https://studio.blender.org/pipeline/addons/easy_weight",
"tracker_url": "https://projects.blender.org/studio/blender-studio-pipeline", "tracker_url": "https://projects.blender.org/studio/blender-studio-pipeline",
} }

View File

@ -6,7 +6,7 @@ name = "EasyWeight"
tagline = "Weight Painting Workflow Boosters" tagline = "Weight Painting Workflow Boosters"
maintainer = "Demeter Dzadik <demeter@blender.org>" maintainer = "Demeter Dzadik <demeter@blender.org>"
type = "add-on" type = "add-on"
website = "https://studio.blender.org/pipeline/addons/easy_weights" website = "https://studio.blender.org/pipeline/addons/easy_weight"
tags = ["Rigging"] tags = ["Rigging"]
blender_version_min = "4.2.0" blender_version_min = "4.2.0"