Done a little bit of renaming in primitive.cs and on a few events in IClientAPI.

Disabled CAPS asset uploading as it seems it now crashes the server.
This commit is contained in:
MW
2007-07-09 15:59:35 +00:00
parent e8acf1cca9
commit 93f3ef7e0d
13 changed files with 63 additions and 67 deletions

View File

@@ -83,12 +83,12 @@ namespace OpenSim.Region.Environment.Scenes
{
if (this._physActor != null)
{
velocity.X = _physActor.Velocity.X;
velocity.Y = _physActor.Velocity.Y;
velocity.Z = _physActor.Velocity.Z;
m_velocity.X = _physActor.Velocity.X;
m_velocity.Y = _physActor.Velocity.Y;
m_velocity.Z = _physActor.Velocity.Z;
}
return velocity;
return m_velocity;
}
set
{
@@ -108,7 +108,7 @@ namespace OpenSim.Region.Environment.Scenes
}
}
velocity = value;
m_velocity = value;
}
}
}