Increased the flying speed
parent
80d854809e
commit
d663dfa3bd
|
@ -228,7 +228,7 @@ namespace OpenSim.world
|
|||
//work out velocity for sim physics system
|
||||
direc = direc * ((0.03f) * 128f);
|
||||
if (this._physActor.Flying)
|
||||
direc *= 2;
|
||||
direc *= 4;
|
||||
|
||||
newVelocity.X = direc.x;
|
||||
newVelocity.Y = direc.y;
|
||||
|
|
|
@ -252,6 +252,11 @@ namespace OpenSim.world
|
|||
remoteClient.OutPacket(outPacket);
|
||||
}
|
||||
|
||||
public void SendFullUpdateToAllClients()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public void SendTerseUpdateToClient(SimClient RemoteClient)
|
||||
{
|
||||
|
||||
|
|
Loading…
Reference in New Issue