cnc afld polish

This commit is contained in:
Paul Chote
2010-08-30 21:56:05 +12:00
parent 853ef12c8f
commit 178af8b849
3 changed files with 15 additions and 3 deletions

View File

@@ -49,6 +49,12 @@ namespace OpenRA.Mods.RA.Render
anim.PlayThen(GetPrefix(self) + name,
() => { anim.PlayRepeating(GetPrefix(self) + "idle"); a(); });
}
public void PlayCustomAnimRepeating(Actor self, string name)
{
anim.PlayThen(GetPrefix(self) + name,
() => { PlayCustomAnimRepeating(self, name); });
}
public void PlayCustomAnimBackwards(Actor self, string name, Action a)
{