From f2b175ef08066649a13b6a42f0a59d9bee503638 Mon Sep 17 00:00:00 2001 From: Teravus Ovares Date: Sun, 9 Dec 2007 05:59:49 +0000 Subject: * Added some inter-region comms glue for allowing sims to chat amongst themsevles about an agent behind the agent's back. * Will be using this glue Tomorrow/today to tell other regions what the agent's draw distance is and what region they're actually in so the region can make decisions on what prim to send, if any. --- OpenSim/Framework/ChildAgentDataUpdate.cs | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 OpenSim/Framework/ChildAgentDataUpdate.cs (limited to 'OpenSim/Framework/ChildAgentDataUpdate.cs') diff --git a/OpenSim/Framework/ChildAgentDataUpdate.cs b/OpenSim/Framework/ChildAgentDataUpdate.cs new file mode 100644 index 0000000..c48f53a --- /dev/null +++ b/OpenSim/Framework/ChildAgentDataUpdate.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace OpenSim.Framework +{ + [Serializable] + public class ChildAgentDataUpdate + { + public ChildAgentDataUpdate() + { + + } + public sLLVector3 Position; + public ulong regionHandle; + public float drawdistance; + public sLLVector3 cameraPosition; + public sLLVector3 Velocity; + public float AVHeight; + public Guid AgentID; + public float godlevel; + } +} -- cgit v1.1