diff --git a/interface/src/Hair.cpp b/interface/src/Hair.cpp index bd2092cf3f..824e273049 100644 --- a/interface/src/Hair.cpp +++ b/interface/src/Hair.cpp @@ -20,7 +20,7 @@ const float CONSTRAINT_RELAXATION = 10.0f; const float HAIR_ACCELERATION_COUPLING = 0.025f; const float HAIR_ANGULAR_VELOCITY_COUPLING = 0.10f; const float HAIR_MAX_LINEAR_ACCELERATION = 4.0f; -const float HAIR_STIFFNESS = 0.0000f; +const float HAIR_STIFFNESS = 0.0003f; const glm::vec3 HAIR_COLOR1(0.98f, 0.92f, 0.843f); const glm::vec3 HAIR_COLOR2(0.545f, 0.533f, 0.47f); diff --git a/interface/src/Hair.h b/interface/src/Hair.h index dfb90cae21..0ca507ee23 100644 --- a/interface/src/Hair.h +++ b/interface/src/Hair.h @@ -25,8 +25,8 @@ const int HAIR_CONSTRAINTS = 2; const int DEFAULT_HAIR_STRANDS = 50; const int DEFAULT_HAIR_LINKS = 10; -const float DEFAULT_HAIR_RADIUS = 0.25; -const float DEFAULT_HAIR_LINK_LENGTH = 0.05; +const float DEFAULT_HAIR_RADIUS = 0.15; +const float DEFAULT_HAIR_LINK_LENGTH = 0.03; const float DEFAULT_HAIR_THICKNESS = 0.015; class Hair { diff --git a/interface/src/avatar/Avatar.h b/interface/src/avatar/Avatar.h index 8dbeda25dc..e29a2de71e 100755 --- a/interface/src/avatar/Avatar.h +++ b/interface/src/avatar/Avatar.h @@ -222,6 +222,7 @@ private: float getBillboardSize() const; + }; #endif // hifi_Avatar_h