* This is the fabled LibOMV update with all of the libOMV types from JHurliman

* This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point.  Regular people should let the dust settle.
* This has been tested to work with most basic functions. However..   make sure you back up 'everything' before using this.  It's that big!  
* Essentially we're back at square 1 in the testing phase..  so lets identify things that broke.
This commit is contained in:
Teravus Ovares
2008-09-06 07:52:41 +00:00
parent cbec2bf22b
commit 7d89e12293
388 changed files with 6811 additions and 7138 deletions

View File

@@ -26,7 +26,7 @@
*/
using System;
using libsecondlife;
using OpenMetaverse;
namespace OpenSim.Framework
{
@@ -44,17 +44,17 @@ namespace OpenSim.Framework
protected int m_channel;
protected string m_from;
protected string m_message;
protected LLVector3 m_position;
protected Vector3 m_position;
protected IScene m_scene;
protected IClientAPI m_sender;
protected object m_senderObject;
protected ChatTypeEnum m_type;
protected LLUUID m_fromID;
protected UUID m_fromID;
public OSChatMessage()
{
m_position = new LLVector3();
m_position = new Vector3();
}
/// <summary>
@@ -87,7 +87,7 @@ namespace OpenSim.Framework
/// <summary>
/// The position of the sender at the time of the message broadcast.
/// </summary>
public LLVector3 Position
public Vector3 Position
{
get { return m_position; }
set { m_position = value; }
@@ -125,7 +125,7 @@ namespace OpenSim.Framework
set { m_senderObject = value; }
}
public LLUUID SenderUUID
public UUID SenderUUID
{
get { return m_fromID; }
set { m_fromID = value; }
@@ -142,4 +142,4 @@ namespace OpenSim.Framework
#endregion
}
}
}