Created
February 25, 2016 03:34
-
-
Save cabbibo/fdabaec8d4959068328c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public struct FloatUniform{ | |
public float value; | |
public float low; | |
public float high; | |
public float og; | |
} | |
public struct ComputeUniforms{ | |
public FloatUniform _LengthOfConnectionSprings; | |
public FloatUniform _ConnectionSpringStrength; | |
public FloatUniform _MaxVel; | |
public FloatUniform _MaxForce; | |
public FloatUniform _ForceMultiplier; | |
public FloatUniform _Dampening; | |
public FloatUniform _HandRepelRadius ; | |
public FloatUniform _HandRepelStrength ; | |
public FloatUniform _ReturnSpringStrength ; | |
public FloatUniform _DistanceToAudioHit ; | |
public FloatUniform _AudioHitMultiplier ; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment