MeshSkinner
A field report on Unity Asset Store pricing, by way of Winterdust ; 0.0★ (2)

§ 01Summary
MeshSkinner has been tracked on the Unity Asset Store since 2022-07-05. The price has held steady at $45.00 the entire time. MeshSkinner is at its all-time low right now.
§ 02The data
Not enough price points yet for MeshSkinner. Check back soon.
No recorded changes yet.
§ 03About this asset
The MeshSkinner class provides an easy way to skin a mesh during runtime. It takes care of creating a fully working SkinnedMeshRenderer component.
This is useful if you want to use custom models that wasn't imported in the Unity Editor. It can be used to increase mod support for your game, a modder can change a mesh and you can still apply your skeleton to it.
Working with MeshSkinner is easy, it is done via script:
using Winterdust;
GameObject m = [...] //model container
GameObject s = [...] //skeleton hierarchy
MeshSkinner ms = new MeshSkinner(m, s);
ms.work();
ms.finish();
In this example we prepare a new MeshSkinner instance by giving it our model GameObject (which contains one or more MeshFilter components) and the skeleton GameObject (which is a hierarchy of empty GameObjects representing joints). Then work() is called; the MeshSkinner does all its calculations and prepares to bind any found meshes to the skeleton. Finally finish() is called and when it returns the model and its SkinnedMeshRenderer component(s) are ready to be used.
MeshSkinner is designed to make life as easy as possible for you, it tries its best to put everything together automatically. Most of the time you only need to specify a neck length in the constructor and the results will look good. For more control several methods are available; you can disable unwanted bones, change bone length or even how "bendy" a joint should be (for rubber-like effect).
You can paint weights directly if you want to, either by specifying points or by giving volumes to the MeshSkinner ("everything inside this cube should be affected by joint RightElbow"). This is usually not needed unless you want to really go into details.
You can skin all kinds of mesh, humanoids or animals. Even objects. Why not use a skeleton to open your door in some special kind of way?
A debug component is included to help you visualize weights, it also works on SkinnedMeshRenderer components not created by MeshSkinner.
MeshSkinner is delivered as a .dll file, everything is well documented with detailed XMLDOC descriptions. A .xml file is included, when placed next to the .dll the documentation can be seen from inside your script editor.
The heavy work() method can be executed from a different thread if you want to make a preloader for your game.
Try before buy - there is a free demo available! Visit the link below to download it.
For more information please check out https://winterdust.itch.io/meshskinner
Description sourced from the Unity Asset Store listing.
§ 04Frequently asked
What is the current price of MeshSkinner on the Unity Asset Store?
MeshSkinner currently costs $45.00 on the Unity Asset Store, based on our latest price check.
What is the cheapest MeshSkinner has ever been?
The all-time low we have recorded for MeshSkinner is $45.00. The historical median is $45.00 and the highest price seen was $45.00.
Is now a good time to buy MeshSkinner?
Yes ; MeshSkinner is at its all-time low right now.
Who publishes MeshSkinner?
MeshSkinner is published by Winterdust on the Unity Asset Store.
§ 05Also marked down