* 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:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user