* 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:
John Hurliman
2007-04-09 08:03:12 +00:00
parent 3c81807d8b
commit f44c012f60
14 changed files with 176 additions and 23 deletions

View File

@@ -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();