Example #1
0
 public EntityCamera(RegionContextBase rcontext, AssetContextBase acontext)
     : base(rcontext, acontext)
 {
     m_yawFixed       = true;
     m_globalPosition = new OMV.Vector3d(40f, 40f, 30f);
     m_heading        = new OMV.Quaternion(0f, 1f, 0f);
 }
 public EntityBase(RegionContextBase rcontext, AssetContextBase acontext)
 {
     Additions = new Object[EntityBase.ADDITIONCLASSES];
     for (int ii = 0; ii < EntityBase.ADDITIONCLASSES; ii++)
     {
         Additions[ii] = null;
     }
     m_LGID          = NextLGID();
     m_worldContext  = World.Instance;
     m_regionContext = rcontext;
     m_assetContext  = acontext;
 }
Example #3
0
 // created with a hosting asset server.
 // Extract the host name handle from the asset context and use the passed name
 // as teh name of the entity in that context.
 public EntityName(AssetContextBase acontext, string name)
 {
     if (acontext != null)
     {
         m_header = "";
         m_host   = acontext.Name;
         m_entity = name;
     }
     else
     {
         m_header = "";
         m_host   = "LOOKINGGLASS";
         m_entity = name;
     }
     // m_fullName is created when it is asked for
 }
Example #4
0
 public EntityLight(RegionContextBase rcontext, AssetContextBase acontext)
     : base(rcontext, acontext)
 {
 }
Example #5
0
 public TerrainInfoBase(RegionContextBase rcontext, AssetContextBase acontext)
     : base(rcontext, acontext)
 {
 }
Example #6
0
 public EntityAvatarBase(RegionContextBase rcontext, AssetContextBase acontext)
     : base(rcontext, acontext)
 {
 }