* Begun work on Primitive Duplication. Not hooked up yet, but theoretically could be done so. In practice, more work needs to be done.

This commit is contained in:
Adam Frisby
2007-07-09 15:29:39 +00:00
parent f62b7f3d1e
commit e8acf1cca9
8 changed files with 140 additions and 2 deletions

View File

@@ -74,6 +74,7 @@ namespace OpenSim.Region.Environment.Scenes
public uint LocalId
{
get { return m_localId; }
set { m_localId = value; }
}
/// <summary>
@@ -121,6 +122,15 @@ namespace OpenSim.Region.Environment.Scenes
}
/// <summary>
/// Copies the entity
/// </summary>
/// <returns></returns>
public virtual EntityBase Copy()
{
return (EntityBase)this.MemberwiseClone();
}
/// <summary>
/// Infoms the entity that the land (heightmap) has changed
/// </summary>