mirror of
https://github.com/overte-org/overte.git
synced 2025-04-23 18:13:29 +02:00
tweaked defaults
This commit is contained in:
parent
0b3e41a541
commit
d493b92d7b
3 changed files with 4 additions and 3 deletions
|
@ -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);
|
||||
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -222,6 +222,7 @@ private:
|
|||
|
||||
float getBillboardSize() const;
|
||||
|
||||
|
||||
};
|
||||
|
||||
#endif // hifi_Avatar_h
|
||||
|
|
Loading…
Reference in a new issue