* Split up asset store and transfer manager in Simian into two extensions

* Added PeriscopeTransferManager to handle animation and sound transfers
* Misc. transfer bugfixes in libomv
* Misc. improvement to TexturePipeline and some numbers tweaking
* Attempted to pass object touch events through to foreign grid in Periscope, may not be working
* Added new chat commands in Periscope

git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@2385 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2008-12-19 03:39:29 +00:00
parent 344d327a15
commit 1df78cb074
12 changed files with 1025 additions and 715 deletions

View File

@@ -41,7 +41,7 @@ namespace SimExport
running = true;
client = new GridClient();
texturePipeline = new TexturePipeline(client);
texturePipeline = new TexturePipeline(client, 10);
texturePipeline.OnDownloadFinished += new TexturePipeline.DownloadFinishedCallback(texturePipeline_OnDownloadFinished);
//Settings.LOG_LEVEL = Helpers.LogLevel.Info;
@@ -345,7 +345,7 @@ namespace SimExport
for (int i = 0; i < te.FaceTextures.Length; i++)
{
if (te.FaceTextures[i] != null && !texturesFinished.ContainsKey(te.FaceTextures[i].TextureID))
texturePipeline.RequestTexture(te.FaceTextures[i].TextureID);
texturePipeline.RequestTexture(te.FaceTextures[i].TextureID, ImageType.Normal);
}
}
}