LIBOMV-903: Handle ObjectPhysicsProperties Event Queue Message

git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@3533 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
Latif Khalifa
2011-05-20 09:26:13 +00:00
parent 076a05917e
commit 0dd3773031
5 changed files with 1493 additions and 1285 deletions

View File

@@ -96,6 +96,7 @@ namespace OpenMetaverse.Messages
case "SetDisplayNameReply": message = new SetDisplayNameReplyMessage(); break;
case "DisplayNameUpdate": message = new DisplayNameUpdateMessage(); break;
//case "ProductInfoRequest": message = new ProductInfoRequestMessage(); break;
case "ObjectPhysicsProperties": message = new ObjectPhysicsPropertiesMessage(); break;
// Capabilities TODO:
// DispatchRegionInfo
@@ -127,7 +128,7 @@ namespace OpenMetaverse.Messages
}
catch (Exception e)
{
Logger.Log("Exception while tring to Deserialize " + eventName + ":" + e.Message + ": " + e.StackTrace, Helpers.LogLevel.Error);
Logger.Log("Exception while trying to Deserialize " + eventName + ":" + e.Message + ": " + e.StackTrace, Helpers.LogLevel.Error);
}
return null;