* Client.Self.Position now does acceleration/velocity interpolation
* Added LLVector3 * float operator * Adding Oven.cs to Baker (will be moved in to libsecondlife later) that does the first baby steps of baking * Added the missing Helpers.GetResourceStream() function * Changed readonly Settings values to const git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@1110 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
@@ -346,9 +346,15 @@ namespace libsecondlife
|
||||
#endregion Public Properties
|
||||
|
||||
|
||||
internal ObjectData data = new ObjectData();
|
||||
internal ObjectData data;
|
||||
internal DateTime lastInterpolation;
|
||||
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
/// <param name="obj"></param>
|
||||
/// <returns></returns>
|
||||
public override bool Equals(object obj)
|
||||
{
|
||||
LLObject llobj = obj as LLObject;
|
||||
@@ -357,6 +363,10 @@ namespace libsecondlife
|
||||
return ID.Equals(llobj.ID);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public override int GetHashCode()
|
||||
{
|
||||
return ID.GetHashCode();
|
||||
|
||||
Reference in New Issue
Block a user