From e647d9ec51ebb3008277c5268953b71b079c0a5d Mon Sep 17 00:00:00 2001 From: MW Date: Thu, 21 Jun 2007 13:55:28 +0000 Subject: Fixed problem of not being able to move out of the first 3X3 block of regions. (Code Needs cleaning up). --- OpenSim/OpenSim.Region/Scenes/Entity.cs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'OpenSim/OpenSim.Region/Scenes/Entity.cs') diff --git a/OpenSim/OpenSim.Region/Scenes/Entity.cs b/OpenSim/OpenSim.Region/Scenes/Entity.cs index 2376fc4..bd9309b 100644 --- a/OpenSim/OpenSim.Region/Scenes/Entity.cs +++ b/OpenSim/OpenSim.Region/Scenes/Entity.cs @@ -38,10 +38,9 @@ namespace OpenSim.Region.Scenes public abstract class Entity : IScriptReadonlyEntity { public libsecondlife.LLUUID uuid; - public LLVector3 velocity; public Quaternion rotation; protected List children; - protected LLVector3 m_pos; + protected PhysicsActor _physActor; protected Scene m_world; protected string m_name; @@ -54,6 +53,7 @@ namespace OpenSim.Region.Scenes get { return m_name; } } + protected LLVector3 m_pos; /// /// /// @@ -92,6 +92,11 @@ namespace OpenSim.Region.Scenes } } + public LLVector3 velocity; + + /// + /// + /// public virtual LLVector3 Velocity { get -- cgit v1.1