aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2013-01-02 21:38:00 +0000
committerJustin Clark-Casey (justincc)2013-01-04 00:46:44 +0000
commit2b6f12a1d3e9e1142d2178b54161dc77fd83f2dc (patch)
treed290a14742e8fb15275863a9a66751b5989666b1 /OpenSim/Framework
parentIf an NPC is unowned, then always auto-grant permissions requested via llRequ... (diff)
downloadopensim-SC_OLD-2b6f12a1d3e9e1142d2178b54161dc77fd83f2dc.zip
opensim-SC_OLD-2b6f12a1d3e9e1142d2178b54161dc77fd83f2dc.tar.gz
opensim-SC_OLD-2b6f12a1d3e9e1142d2178b54161dc77fd83f2dc.tar.bz2
opensim-SC_OLD-2b6f12a1d3e9e1142d2178b54161dc77fd83f2dc.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.cs8
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