* Moved the mapgen.bat script to the root and removed the bin dir from svn to prevent nant clean from screwing up the repository

* Removed all the build-dll references in nant files from projects dependent on libsl, should speed up build times at the possible expense of less build-sanity checking
* TestClient uses the new AppearanceManager code at login

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@690 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2006-12-07 06:33:43 +00:00
parent b5f1a9ac21
commit 2d45b08478
8 changed files with 14 additions and 31 deletions

View File

@@ -4,6 +4,7 @@ using System.Reflection;
using System.Xml;
using libsecondlife;
using libsecondlife.Packets;
using libsecondlife.AssetSystem;
namespace libsecondlife.TestClient
{
@@ -86,9 +87,16 @@ namespace libsecondlife.TestClient
client.Objects.RequestAllObjects = true;
client.Network.Login(account.FirstName, account.LastName, account.Password,
bool login = client.Network.Login(account.FirstName, account.LastName, account.Password,
"TestClient", "contact@libsecondlife.org");
if (login)
{
// Set our appearance
AppearanceManager appearance = new AppearanceManager(client);
appearance.SendAgentSetAppearance();
}
return client;
}