Use scale in RenderSimple.RenderPreview. Fixes #3970.

This commit is contained in:
Paul Chote
2013-10-21 18:52:29 +13:00
parent bb8f4494f5
commit 03c4c476f1
2 changed files with 2 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ namespace OpenRA.Traits
var anim = new Animation(RenderSimple.GetImage(ai), () => 0);
anim.PlayRepeating("idle");
return anim.Render(WPos.Zero, pr);
return anim.Render(WPos.Zero, WVec.Zero, 0, pr, Scale);
}
}