diff options
author | UbitUmarov | 2014-10-12 12:52:12 +0100 |
---|---|---|
committer | UbitUmarov | 2014-10-12 12:52:12 +0100 |
commit | 9a3df6445e82453964e0604b91ad08499406a2e2 (patch) | |
tree | ad277283820ab89fc4120afbdf26e83cf97e8246 | |
parent | try to reduce avatar bounce on falls. Not all possible side effects (diff) | |
download | opensim-SC-9a3df6445e82453964e0604b91ad08499406a2e2.zip opensim-SC-9a3df6445e82453964e0604b91ad08499406a2e2.tar.gz opensim-SC-9a3df6445e82453964e0604b91ad08499406a2e2.tar.bz2 opensim-SC-9a3df6445e82453964e0604b91ad08499406a2e2.tar.xz |
move AnimationSet and AvatarSkeleton to OpenSimExtras
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs b/OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs index 7c22a7c..bedec80 100644 --- a/OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs +++ b/OpenSim/Region/ClientStack/Linden/Caps/SimulatorFeaturesModule.cs | |||
@@ -131,8 +131,6 @@ namespace OpenSim.Region.ClientStack.Linden | |||
131 | m_features["MeshRezEnabled"] = true; | 131 | m_features["MeshRezEnabled"] = true; |
132 | m_features["MeshUploadEnabled"] = true; | 132 | m_features["MeshUploadEnabled"] = true; |
133 | m_features["MeshXferEnabled"] = true; | 133 | m_features["MeshXferEnabled"] = true; |
134 | m_features["AvatarSkeleton"] = true; | ||
135 | m_features["AnimationSet"] = true; | ||
136 | 134 | ||
137 | m_features["PhysicsMaterialsEnabled"] = true; | 135 | m_features["PhysicsMaterialsEnabled"] = true; |
138 | 136 | ||
@@ -143,15 +141,19 @@ namespace OpenSim.Region.ClientStack.Linden | |||
143 | m_features["PhysicsShapeTypes"] = typesMap; | 141 | m_features["PhysicsShapeTypes"] = typesMap; |
144 | 142 | ||
145 | // Extra information for viewers that want to use it | 143 | // Extra information for viewers that want to use it |
146 | // TODO: Take these out of here into their respective modules, like map-server-url | 144 | |
147 | OSDMap extrasMap = new OSDMap(); | 145 | OSDMap extrasMap = new OSDMap(); |
146 | |||
147 | extrasMap["AvatarSkeleton"] = true; | ||
148 | extrasMap["AnimationSet"] = true; | ||
149 | |||
150 | // TODO: Take these out of here into their respective modules, like map-server-url | ||
148 | if (m_SearchURL != string.Empty) | 151 | if (m_SearchURL != string.Empty) |
149 | extrasMap["search-server-url"] = m_SearchURL; | 152 | extrasMap["search-server-url"] = m_SearchURL; |
150 | if (m_ExportSupported) | 153 | if (m_ExportSupported) |
151 | extrasMap["ExportSupported"] = true; | 154 | extrasMap["ExportSupported"] = true; |
152 | 155 | ||
153 | if (extrasMap.Count > 0) | 156 | m_features["OpenSimExtras"] = extrasMap; |
154 | m_features["OpenSimExtras"] = extrasMap; | ||
155 | 157 | ||
156 | } | 158 | } |
157 | } | 159 | } |