All Projects → ConstantineRudenko → Dq Skinning For Unity

ConstantineRudenko / Dq Skinning For Unity

Licence: mit

Programming Languages

csharp
926 projects

Projects that are alternatives of or similar to Dq Skinning For Unity

Universalshaderexamples
Sand box project containing example shaders and assets compatible with Unity Universal Render Pipeline.
Stars: ✭ 207 (+122.58%)
Mutual labels:  unity, shaderlab, hlsl
Nnao
Neural Network Ambien Occlusion based on http://theorangeduck.com/page/neural-network-ambient-occlusion
Stars: ✭ 57 (-38.71%)
Mutual labels:  unity, shaderlab, hlsl
Alloy
Alloy physical shader framework for Unity.
Stars: ✭ 244 (+162.37%)
Mutual labels:  unity, shaderlab, hlsl
Unity Shaders
✨ Shader demo - More than 300 examples
Stars: ✭ 198 (+112.9%)
Mutual labels:  unity, shaderlab, hlsl
Unity Ui Rounded Corners
This components and shaders allows you to add rounded corners to UI elements!
Stars: ✭ 307 (+230.11%)
Mutual labels:  unity, shaderlab, hlsl
Iridescence
Iridescence shader
Stars: ✭ 89 (-4.3%)
Mutual labels:  unity, shaderlab
Packedrgbmshader
32-bit packed color format with RGBM encoding for shader use
Stars: ✭ 39 (-58.06%)
Mutual labels:  unity, shaderlab
Tiled Directional Flow
A shader to control the direction water flows based on a flow map in Unity.
Stars: ✭ 54 (-41.94%)
Mutual labels:  unity, shaderlab
Uchromakey
Chroma key shader asset for Unity
Stars: ✭ 58 (-37.63%)
Mutual labels:  unity, shaderlab
Testbedhdrp
Testbed project for Unity HDRP (High Definition Render Pipeline)
Stars: ✭ 859 (+823.66%)
Mutual labels:  unity, shaderlab
X Postprocessing Library
Unity Post Processing Stack Library | Unity引擎的高品质后处理库
Stars: ✭ 1,079 (+1060.22%)
Mutual labels:  unity, shaderlab
Jl S Unity Blend Modes
👾 Collection of Unity shaders that support blend modes like photoshop layer style (Darken, Multiply, Linear Burn, etc)
Stars: ✭ 62 (-33.33%)
Mutual labels:  shaderlab, hlsl
Particlecloudvrc
Interactable shader-based particle system for VRChat/Unity
Stars: ✭ 38 (-59.14%)
Mutual labels:  unity, hlsl
Computeshader Unity Macos
Stars: ✭ 31 (-66.67%)
Mutual labels:  unity, hlsl
Unity Grabsquares Effect
Unity GrabSquares Effect
Stars: ✭ 39 (-58.06%)
Mutual labels:  unity, shaderlab
Museum
Live coding rig for Channel 18 at SuperDeluxe
Stars: ✭ 30 (-67.74%)
Mutual labels:  unity, hlsl
Matrix Shockwave Shader
Surface shader with tesselation - Tried recreating the shockwave effect in Matrix when Neo takes off.
Stars: ✭ 69 (-25.81%)
Mutual labels:  unity, shaderlab
Pbr proj
Shader of PBR for Unity
Stars: ✭ 68 (-26.88%)
Mutual labels:  unity, hlsl
Unitypointcloudviewer
Point Cloud Viewer and Tools for Unity
Stars: ✭ 71 (-23.66%)
Mutual labels:  unity, shaderlab
Temporalreprojectionexample
Temporal reprojection example for Unity
Stars: ✭ 82 (-11.83%)
Mutual labels:  unity, shaderlab

Dual quaternion skinning for Unity

Features

  • GPU skinning with compute shaders
  • blend shape support (calculations performed in compute shader)
  • works with any platform that supports compute shaders
  • preserves volume with deformation (look comparison)
  • zero GC allocations per frame
  • original bulging compensation method

Stargazers over time

Comparison DQ vs built-in linear

Gif Difference

Bulging compensation demo

Unity version

The script was tested with following Unity versions:

  • 2020.1.0a13.1443 (earlier versions do not support #pragma multi_compile in compute shaders)
  • 2020.2.0f1 (briefly tested - seems to work just fine)

How to set up

  • Create a skinned character with SkinnedMeshRenderer component
  • Add DualQuaternionSkinner.cs component (it will require a MeshFilter component)
  • Enable mesh Read/Write in import settings
  • All materials of the mesh should use a special shader to apply vertex positions. The shader is MadCake/Material/Standard hacked for DQ skinning
  • In order for bulging compensation to work properly, all the character's bones must have one local axis (consistent for all bones) aligned with the limb controlled by the corresponding bone.
Bones properly aligned Bones not aligned
  • Whichever local axis of the bones was aligned with the limbs must be selected in the script gui:

If bulging is increased instead of decreased, select same axis with different direction (X => Negative X)

Common problems

The script is programmed to automatically detect common setup problems. Check out the editor:

Warning

You will not see any effect in edit mode.
The scipt only works in play mode.
If you see no effect in play mode verify that you are using the right shader.

Why do i need SkinnedMeshRenderer?

My scripts uses SkinnedMeshRenderer to extract an array of bones from it. Yep, that's it.
The order of bones is unpredictable and does not depend on their hierarchy.
Only SkinnedMeshRenderer knows it    ¯\_(ツ)_/¯

After extracting the bone array in Start() my script disables SkinnedMeshRenderer component as it is no longer needed. All the animations are performed by the script. You can verify it in the editor after hitting play button.

How do I use custom shaders?

Alas it's complicated.
I added comments to "Standard hacked for DQ skinning" marking the alterations i made to the Standard shader.
You can try to do the same with your own shader to make it work with the script.

Feel free to contact me in this thread at unity forum if you need help.

I would also like to hear about your projects that use my script and your experience with it.

Known bugs

Must use cullingMode = AlwaysAnimate in Animator. Otherwise, the mesh is treated as permanently invisible.

You can write a short script that will toggle cullingMode based on visibility to get proper culling.

Performance

During my testing the amount of time spent on actual skinning was negligible compared to the amount of time extracting localToWorldMatrix from every bone in the hierarchy.

As long as you are not creating hundreds of characters with complex rigs (no matter the polycount) there should be no significant performance hit.

If anyone knows how to optimize extracting localToWorldMatrix of the bones please create an issue or message me on unity forum.

Works A LOT faster with IL2CPP, about 30% slower than built-in skinning in worst-case scenario according to my testing.

API

Documentation

Future plans

  • Test/improve/optimize bulging compensation
  • Implement toggle for bulging compensation
  • Implement simple runtime switching between DualQuaternionSkinned and built-in SkinnedMeshRenderer
  • Implement proper animation culling (see known bugs)
  • It might make sense to group the data from all instances of the script into one batch and run the compute shaders only once per frame regardless of how many animated characters you have

Discussion

If you have any questions, ideas, bug reports, or just want to discuss the script, you can contact me on unity forum

Bulging compensation method

The bulging compensation method used is described in the article.

Notes:

  • In formula (6) there is a mistake, x should be replaced by w_2 (there is no variable named x)
  • Since publishing the article I found a better polynomial instead of (9), the coefficients are as follows: 2.2; -9.6; 10.4
  • In formula (12) there are weird brackets around V_bisector. This is a software bug, they should be ignored. This happens multiple times later in the article.
  • The stretched region of the model in Fig (7), that looks weird even after applying the fix (though is no longer jagged), is actually caused by using improperly prepared armature. The spine and the shoulder have different local axes aligned along the joint. This contradicts one of the requirements listed at the top of page 17.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].