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