* Made Packet.TickCount internal
* Added Packet.ResendCount so we can track the number of times a packet is resent (not implemented yet) git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@1619 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
@@ -470,9 +470,9 @@ namespace libsecondlife
|
||||
return (byte)(200 - (byte)Math.Round(pathScale / SCALE_QUANTA));
|
||||
}
|
||||
|
||||
public static byte PackPathShear(float pathShear)
|
||||
public static sbyte PackPathShear(float pathShear)
|
||||
{
|
||||
return (byte)Math.Round(pathShear / SHEAR_QUANTA);
|
||||
return (sbyte)Math.Round(pathShear / SHEAR_QUANTA);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user