* Adding ScenePresence.ClientView property to return IClientCore interface to a client.
parent
841c53003f
commit
5f912a6787
|
@ -34,6 +34,7 @@ using OpenMetaverse;
|
||||||
using OpenMetaverse.Packets;
|
using OpenMetaverse.Packets;
|
||||||
using log4net;
|
using log4net;
|
||||||
using OpenSim.Framework;
|
using OpenSim.Framework;
|
||||||
|
using OpenSim.Framework.Client;
|
||||||
using OpenSim.Framework.Communications.Cache;
|
using OpenSim.Framework.Communications.Cache;
|
||||||
using OpenSim.Region.Environment.Interfaces;
|
using OpenSim.Region.Environment.Interfaces;
|
||||||
using OpenSim.Region.Environment.Types;
|
using OpenSim.Region.Environment.Types;
|
||||||
|
@ -355,6 +356,11 @@ namespace OpenSim.Region.Environment.Scenes
|
||||||
set { m_controllingClient = value; }
|
set { m_controllingClient = value; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public IClientCore ClientView
|
||||||
|
{
|
||||||
|
get { return (IClientCore) m_controllingClient; }
|
||||||
|
}
|
||||||
|
|
||||||
protected Vector3 m_parentPosition = new Vector3();
|
protected Vector3 m_parentPosition = new Vector3();
|
||||||
public Vector3 ParentPosition
|
public Vector3 ParentPosition
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue