diff options
author | Teravus Ovares (Dan Olivares) | 2010-10-14 09:34:37 -0400 |
---|---|---|
committer | Teravus Ovares (Dan Olivares) | 2010-10-14 09:34:37 -0400 |
commit | 6d99f0c627d9f1eefd14b7488cce34b1e2e7d933 (patch) | |
tree | 8d1410d68fcc3c9ce58d297dcc998b39686818e3 | |
parent | * Tweaked the upload response and now at least uploading the mesh works. (diff) | |
download | opensim-SC_OLD-6d99f0c627d9f1eefd14b7488cce34b1e2e7d933.zip opensim-SC_OLD-6d99f0c627d9f1eefd14b7488cce34b1e2e7d933.tar.gz opensim-SC_OLD-6d99f0c627d9f1eefd14b7488cce34b1e2e7d933.tar.bz2 opensim-SC_OLD-6d99f0c627d9f1eefd14b7488cce34b1e2e7d933.tar.xz |
* Whoops, That was supposed to use the HTTP VERB 'GET' not 'POST'
* At this point. Visually, Mesh works OK. Remember peeps, this is still highly experimental from the viewer side as well as the Simulator side. There are known problems with the new beta viewers and attachment breaking so be careful until that's fixed. Additionally there some new properties in the Mesh Viewer that determine physics settings that are non-functional. More work will be done on that.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/CoreModules/Avatar/Assets/GetMeshModule.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/Assets/GetMeshModule.cs b/OpenSim/Region/CoreModules/Avatar/Assets/GetMeshModule.cs index bae108c..a090c0c 100644 --- a/OpenSim/Region/CoreModules/Avatar/Assets/GetMeshModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/Assets/GetMeshModule.cs | |||
@@ -104,7 +104,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Assets | |||
104 | 104 | ||
105 | m_log.Info("[GETMESH]: /CAPS/" + capID); | 105 | m_log.Info("[GETMESH]: /CAPS/" + capID); |
106 | caps.RegisterHandler("GetMesh", | 106 | caps.RegisterHandler("GetMesh", |
107 | new RestHTTPHandler("POST", "/CAPS/" + capID + "/", | 107 | new RestHTTPHandler("GET", "/CAPS/" + capID, |
108 | delegate(Hashtable m_dhttpMethod) | 108 | delegate(Hashtable m_dhttpMethod) |
109 | { | 109 | { |
110 | return ProcessGetMesh(m_dhttpMethod, agentID, caps); | 110 | return ProcessGetMesh(m_dhttpMethod, agentID, caps); |