diff options
| author | Stanislaw Skowronek <skylark@disorder.sko> | 2013-11-16 03:25:30 (GMT) |
|---|---|---|
| committer | Stanislaw Skowronek <skylark@disorder.sko> | 2013-11-16 03:25:30 (GMT) |
| commit | 4f2d1e0cba1542311bd441c1eded463ac910f9ac (patch) | |
| tree | 42e270ff18bca86f79c257a00a4a7649cfa601f8 /src/simulation/elements/PLEX.cpp | |
| parent | 4e2f388b79ba89fd9f13805b2e69d6311f928f75 (diff) | |
| download | powder-4f2d1e0cba1542311bd441c1eded463ac910f9ac.zip powder-4f2d1e0cba1542311bd441c1eded463ac910f9ac.tar.gz | |
Fix a renderer bug that made all solids gray.
Diffstat (limited to 'src/simulation/elements/PLEX.cpp')
| -rw-r--r-- | src/simulation/elements/PLEX.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/simulation/elements/PLEX.cpp b/src/simulation/elements/PLEX.cpp index 2b8c867..390825f 100644 --- a/src/simulation/elements/PLEX.cpp +++ b/src/simulation/elements/PLEX.cpp @@ -12,9 +12,9 @@ Element_PLEX::Element_PLEX() Advection = 0.0f; AirDrag = 0.00f * CFDS; AirLoss = 0.90f; - Loss = 0.00f; + Loss = 0.99f; Collision = 0.0f; - Gravity = 0.0f; + Gravity = 0.1f; Diffusion = 0.00f; HotAir = 0.000f * CFDS; Falldown = 0; |
