SoftBodyDemo
SoftBodyDemo copied to clipboard
A demo of soft body physics in Unity 5
Results
3
SoftBodyDemo issues
Sort by
recently updated
recently updated
newest added
I came across this repository from YouTube and tried to use it in Unity but found some bugs with newer versions. The bugs have been answered on StackOverflow by people...
the code 'fixed4 transparent = float4(float3(_Color), 0);' reports complie error in unity i think you forget to use '_Color.rgb' as a float3 value use 'fixed4 transparent = float4(float3(_Color.rgb), 0);' instead...