Forgot to change dustparticle movement speed to normal after testing

This commit is contained in:
Joonas Rikkonen
2018-02-28 10:32:54 +02:00
parent d867dd6c17
commit 620a2bf374

View File

@@ -74,7 +74,7 @@ namespace Barotrauma
public void Update(float deltaTime)
{
dustOffset -= Vector2.UnitY * 100.0f * deltaTime;
dustOffset -= Vector2.UnitY * 10.0f * deltaTime;
while (dustOffset.Y <= -2048.0f) dustOffset.Y += 2048.0f;
}