Kovacs-3d / UnityJigglePhysics

A unity addon for adding stretchy bouncy physics to bones and meshes.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Unity Jiggle Physics

openupm

An acceleration-based jigglebone system with soft-body/squash-and-stretch physics for SkinnedMeshRenderers in Unity.

Features

  • GPU per-vertex deformations via shader, squash/stretch based on vertex color masks.

kobold breakdance

  • Purely acceleration based, elevators don't cause things to float/sag.

kobold elevator

  • Works at all framerates with very little differences in the physics solve. (It's unhooked from a fixed timestep as well!)

  • Can run on LateUpdate, FixedUpdate, and Update.

  • Only runs when mesh is visible.

  • Comes with a JiggleSurfaceApproximator which can keep a transform attached to the "skin" of a mesh. Great for censorbars and attachments that can't be added directly to the mesh.

Usage

This unity repository actually comes with a fully working project, with a working model in an example scene. If anything below doesn't make sense, download the project!

  1. Use the included AmplifyShader node to add the vertex deformations to whatever shader you want. (URP, HDRP, Standard, whatever!).

amplify node setup

  1. Make sure your model has RGBA vertex-color masks for how bouncy parts of the model is, keep individual neighboring bouncing parts as different colors.

kobold vertex color setup

  1. Set up a JiggleSoftbody with sensors overlapped in such a way that each "individual" bouncy part has its own sensor.

kobold softbody setup

  1. Add JiggleBones for the primary movement.

Installation

You can install Jiggle Physics with OpenUPM by checking out the badge above. Otherwise...

Simply add https://github.com/naelstrof/UnityJigglePhysics.git#upm as a package using the package manager.

Or if that doesn't work, add it to the manifest.json like so.

{
  "dependencies": {
    "com.naelstrof.jigglephysics": "https://github.com/naelstrof/UnityJigglePhysics.git#upm",
  }
}

About

A unity addon for adding stretchy bouncy physics to bones and meshes.

License:MIT License


Languages

Language:ShaderLab 91.3%Language:C# 8.3%Language:HLSL 0.4%Language:Makefile 0.0%