Added a TexturesCommand to TestClient to enable downloading of textures as they become visible to the bot

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@2244 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2008-09-26 17:29:19 +00:00
parent 42a53335f8
commit eb258fbf68
2 changed files with 114 additions and 1 deletions

View File

@@ -82,7 +82,8 @@ namespace OpenMetaverse.TestClient
private void Assets_OnImageReceiveProgress(UUID image, int recieved, int total)
{
Console.WriteLine(String.Format("Texture {0}: Received {1} / {2}", image, recieved, total));
if (image == TextureID)
Console.WriteLine(String.Format("Texture {0}: Received {1} / {2}", image, recieved, total));
}
}
}