(965c31410) v0.10.4.0

This commit is contained in:
Joonas Rikkonen
2020-07-30 13:00:09 +03:00
parent eeac247a8e
commit 4978af3d60
539 changed files with 45803 additions and 25359 deletions
@@ -57,7 +57,7 @@ namespace Barotrauma
public GUIMessage(string text, Color color, float lifeTime, ScalableFont font = null)
{
coloredText = new ColoredText(text, color, false);
coloredText = new ColoredText(text, color, false, false);
this.lifeTime = lifeTime;
Timer = lifeTime;
@@ -69,7 +69,7 @@ namespace Barotrauma
public GUIMessage(string text, Color color, Vector2 worldPosition, Vector2 velocity, float lifeTime, Alignment textAlignment = Alignment.Center, ScalableFont font = null)
{
coloredText = new ColoredText(text, color, false);
coloredText = new ColoredText(text, color, false, false);
WorldSpace = true;
pos = worldPosition;
Timer = lifeTime;