Add "show animations" console command for debug purposes.

This shows the current animation sequence and default anims for avatars.
This commit is contained in:
Justin Clark-Casey (justincc)
2013-01-02 21:38:00 +00:00
parent acd9d62af2
commit 2b6f12a1d3
3 changed files with 220 additions and 4 deletions

View File

@@ -139,16 +139,16 @@ namespace OpenSim.Framework.Console
public struct ConsoleDisplayTableRow
{
public List<string> Cells { get; private set; }
public List<object> Cells { get; private set; }
public ConsoleDisplayTableRow(List<string> cells) : this()
public ConsoleDisplayTableRow(List<object> cells) : this()
{
Cells = cells;
}
public ConsoleDisplayTableRow(params string[] cells) : this()
public ConsoleDisplayTableRow(params object[] cells) : this()
{
Cells = new List<string>(cells);
Cells = new List<object>(cells);
}
}
}