* This changes gridcomms types back to our home grown wholy controlled types.

* These are different types then the OMV types because changing them causes just about all grid comms to break.   If these were the libOMV types, then libOMV couldn't change them ever again after that..  or we'd have a breakage whenever they changed them.
* This might introduce a map issue.   Still checking it out.
This commit is contained in:
Teravus Ovares
2008-09-06 22:28:51 +00:00
parent c37004291a
commit 3378b502c5
6 changed files with 77 additions and 26 deletions

View File

@@ -26,7 +26,7 @@
*/
using System;
using OpenMetaverse;
using OpenSim.Framework;
namespace OpenSim.Framework
{
@@ -37,14 +37,14 @@ namespace OpenSim.Framework
public Guid AgentID;
public bool alwaysrun;
public float AVHeight;
public Vector3 cameraPosition;
public sLLVector3 cameraPosition;
public float drawdistance;
public float godlevel;
public uint GroupAccess;
public Vector3 Position;
public sLLVector3 Position;
public ulong regionHandle;
public byte[] throttles;
public Vector3 Velocity;
public sLLVector3 Velocity;
public ChildAgentDataUpdate()
{