Universe.Physics.BulletSPlugin.MaterialAttributes.MaterialAttributes C# (CSharp) Method

MaterialAttributes() public method

public MaterialAttributes ( string t, float d, float f, float r ) : System.Collections.Generic
t string
d float
f float
r float
return System.Collections.Generic
        public MaterialAttributes(string t, float d, float f, float r)
        {
            type = t;
            density = d;
            friction = f;
            restitution = r;
        }
MaterialAttributes