* Fixed a bug in Terrain.TerrainHeightAtPoint() for the top-left edges

* Added Utilities.ParcelDownloader.GetWaterType()
* Added the start parameter to Utilities.PersistentLogin()
* Simplified the Heightmap example
* Optimized the TestClient throttle
* ParcelInfoCommand prints out whether each parcel is underwater/waterfront/dry
* Added RegionInfoCommand to print out current region info
* Added Self.Status.UpdateFromHeading() to send an AgentUpdate packet from a rotation

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@1132 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2007-04-18 08:18:32 +00:00
parent b65a4dcbe3
commit df3990e074
8 changed files with 228 additions and 50 deletions

View File

@@ -84,10 +84,16 @@ namespace libsecondlife.TestClient
TestClient client = new TestClient(this);
// Optimize the throttle
client.Throttle.Wind = 0;
client.Throttle.Cloud = 0;
client.Throttle.Land = 1000000;
client.Throttle.Task = 1000000;
client.SimPrims = SimPrims;
client.Master = account.Master;
if (this.startpos.sim != null)
if (!String.IsNullOrEmpty(this.startpos.sim))
{
if (this.startpos.x == 0 || this.startpos.y == 0 || this.startpos.z == 0)
{