(aefc763e9) Changed tutorial navconsole text and fixed tag

This commit is contained in:
Joonas Rikkonen
2019-03-27 20:50:07 +02:00
parent 69852a141e
commit 3b8aeb27c5
7 changed files with 226 additions and 8 deletions
@@ -663,6 +663,13 @@ namespace Barotrauma
msg.Timer -= deltaTime;
msg.Pos += msg.Velocity * deltaTime;
}
foreach (GUIMessage msg in messages)
{
if (!msg.WorldSpace) continue;
msg.Timer -= deltaTime;
msg.Pos += msg.Velocity * deltaTime;
}
}
messages.RemoveAll(m => m.Timer <= 0.0f);