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: 'Easy Weights', link: '/addons/easy_weights'},
{ text: 'Easy Weight', link: '/addons/easy_weight'},
{ text: 'Geonode Shapekeys', link: '/addons/geonode_shapekeys'},
{ text: 'Grease Converter', link: '/addons/grease_converter'},
{ 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 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/)
## Corrective Shape Keys

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

View File

@ -12,14 +12,14 @@ import bpy
import importlib
bl_info = {
"name": "Easy Weights",
"name": "Easy Weight",
"author": "Demeter Dzadik",
"version": (1, 0, 0),
"blender": (4, 2, 0),
"location": "Weight Paint > Weights > Easy Weights",
"location": "3D View -> Sidebar -> Easy Weight",
"description": "Operators to make weight painting easier.",
"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",
}

View File

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