diff options
author | Justin Clark-Casey (justincc) | 2013-01-02 21:38:00 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-01-02 21:38:00 +0000 |
commit | addab1244ecc586b0a6fc8560b94c871567b78da (patch) | |
tree | d290a14742e8fb15275863a9a66751b5989666b1 /OpenSim/Framework | |
parent | If an NPC is unowned, then always auto-grant permissions requested via llRequ... (diff) | |
download | opensim-SC_OLD-addab1244ecc586b0a6fc8560b94c871567b78da.zip opensim-SC_OLD-addab1244ecc586b0a6fc8560b94c871567b78da.tar.gz opensim-SC_OLD-addab1244ecc586b0a6fc8560b94c871567b78da.tar.bz2 opensim-SC_OLD-addab1244ecc586b0a6fc8560b94c871567b78da.tar.xz |
Add "show animations" console command for debug purposes.
This shows the current animation sequence and default anims for avatars.
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/Console/ConsoleDisplayTable.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Framework/Console/ConsoleDisplayTable.cs b/OpenSim/Framework/Console/ConsoleDisplayTable.cs index c620dfe..c6f2272 100644 --- a/OpenSim/Framework/Console/ConsoleDisplayTable.cs +++ b/OpenSim/Framework/Console/ConsoleDisplayTable.cs | |||
@@ -139,16 +139,16 @@ namespace OpenSim.Framework.Console | |||
139 | 139 | ||
140 | public struct ConsoleDisplayTableRow | 140 | public struct ConsoleDisplayTableRow |
141 | { | 141 | { |
142 | public List<string> Cells { get; private set; } | 142 | public List<object> Cells { get; private set; } |
143 | 143 | ||
144 | public ConsoleDisplayTableRow(List<string> cells) : this() | 144 | public ConsoleDisplayTableRow(List<object> cells) : this() |
145 | { | 145 | { |
146 | Cells = cells; | 146 | Cells = cells; |
147 | } | 147 | } |
148 | 148 | ||
149 | public ConsoleDisplayTableRow(params string[] cells) : this() | 149 | public ConsoleDisplayTableRow(params object[] cells) : this() |
150 | { | 150 | { |
151 | Cells = new List<string>(cells); | 151 | Cells = new List<object>(cells); |
152 | } | 152 | } |
153 | } | 153 | } |
154 | } \ No newline at end of file | 154 | } \ No newline at end of file |