aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs')
-rw-r--r--OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs b/OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs
index e258bcb..54542c9 100644
--- a/OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs
+++ b/OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs
@@ -155,8 +155,13 @@ namespace OpenSim.Region.ClientStack.Linden
155 m_features["MeshRezEnabled"] = true; 155 m_features["MeshRezEnabled"] = true;
156 m_features["MeshUploadEnabled"] = true; 156 m_features["MeshUploadEnabled"] = true;
157 m_features["MeshXferEnabled"] = true; 157 m_features["MeshXferEnabled"] = true;
158
158 m_features["PhysicsMaterialsEnabled"] = true; 159 m_features["PhysicsMaterialsEnabled"] = true;
160<<<<<<< HEAD
159 161
162=======
163
164>>>>>>> avn/ubitvar
160 OSDMap typesMap = new OSDMap(); 165 OSDMap typesMap = new OSDMap();
161 typesMap["convex"] = true; 166 typesMap["convex"] = true;
162 typesMap["none"] = true; 167 typesMap["none"] = true;
@@ -164,6 +169,7 @@ namespace OpenSim.Region.ClientStack.Linden
164 m_features["PhysicsShapeTypes"] = typesMap; 169 m_features["PhysicsShapeTypes"] = typesMap;
165 170
166 // Extra information for viewers that want to use it 171 // Extra information for viewers that want to use it
172<<<<<<< HEAD
167 // TODO: Take these out of here into their respective modules, like map-server-url 173 // TODO: Take these out of here into their respective modules, like map-server-url
168 OSDMap extrasMap; 174 OSDMap extrasMap;
169 if(m_features.ContainsKey("OpenSimExtras")) 175 if(m_features.ContainsKey("OpenSimExtras"))
@@ -173,6 +179,15 @@ namespace OpenSim.Region.ClientStack.Linden
173 else 179 else
174 extrasMap = new OSDMap(); 180 extrasMap = new OSDMap();
175 181
182=======
183
184 OSDMap extrasMap = new OSDMap();
185
186 extrasMap["AvatarSkeleton"] = true;
187 extrasMap["AnimationSet"] = true;
188
189 // TODO: Take these out of here into their respective modules, like map-server-url
190>>>>>>> avn/ubitvar
176 if (m_SearchURL != string.Empty) 191 if (m_SearchURL != string.Empty)
177 extrasMap["search-server-url"] = m_SearchURL; 192 extrasMap["search-server-url"] = m_SearchURL;
178 if (!string.IsNullOrEmpty(m_DestinationGuideURL)) 193 if (!string.IsNullOrEmpty(m_DestinationGuideURL))
@@ -184,8 +199,13 @@ namespace OpenSim.Region.ClientStack.Linden
184 if (m_GridName != string.Empty) 199 if (m_GridName != string.Empty)
185 extrasMap["GridName"] = m_GridName; 200 extrasMap["GridName"] = m_GridName;
186 201
202<<<<<<< HEAD
187 if (extrasMap.Count > 0) 203 if (extrasMap.Count > 0)
188 m_features["OpenSimExtras"] = extrasMap; 204 m_features["OpenSimExtras"] = extrasMap;
205=======
206 m_features["OpenSimExtras"] = extrasMap;
207
208>>>>>>> avn/ubitvar
189 } 209 }
190 } 210 }
191 211