summaryrefslogtreecommitdiff
path: root/src/simulation
diff options
context:
space:
mode:
authorStanislaw Skowronek <skylark@disorder.sko>2013-11-16 03:25:30 (GMT)
committer Stanislaw Skowronek <skylark@disorder.sko>2013-11-16 03:25:30 (GMT)
commit4f2d1e0cba1542311bd441c1eded463ac910f9ac (patch)
tree42e270ff18bca86f79c257a00a4a7649cfa601f8 /src/simulation
parent4e2f388b79ba89fd9f13805b2e69d6311f928f75 (diff)
downloadpowder-4f2d1e0cba1542311bd441c1eded463ac910f9ac.zip
powder-4f2d1e0cba1542311bd441c1eded463ac910f9ac.tar.gz
Fix a renderer bug that made all solids gray.
Diffstat (limited to 'src/simulation')
-rw-r--r--src/simulation/elements/FUSE.cpp4
-rw-r--r--src/simulation/elements/PLEX.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/simulation/elements/FUSE.cpp b/src/simulation/elements/FUSE.cpp
index 9eb5e37..827895c 100644
--- a/src/simulation/elements/FUSE.cpp
+++ b/src/simulation/elements/FUSE.cpp
@@ -12,9 +12,9 @@ Element_FUSE::Element_FUSE()
Advection = 0.0f;
AirDrag = 0.00f * CFDS;
AirLoss = 0.90f;
- Loss = 0.00f;
+ Loss = 0.99f;
Collision = 0.0f;
- Gravity = 0.0f;
+ Gravity = 0.08f;
Diffusion = 0.0f;
HotAir = 0.0f * CFDS;
Falldown = 0;
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;