Simulation handlers (agents & objects) completed.

This commit is contained in:
Diva Canto
2009-12-31 09:25:16 -08:00
parent af29999d7d
commit a8901a40f4
8 changed files with 572 additions and 20 deletions

View File

@@ -4889,5 +4889,15 @@ namespace OpenSim.Region.Framework.Scenes
if (Util.EnvironmentTickCountSubtract(m_lastUpdate) > 2000)
StartTimer();
}
public override ISceneObject DeserializeObject(string representation)
{
return SceneObjectSerializer.FromXml2Format(representation);
}
public override bool AllowScriptCrossings
{
get { return m_allowScriptCrossings; }
}
}
}

View File

@@ -510,5 +510,16 @@ namespace OpenSim.Region.Framework.Scenes
MainConsole.Instance.Commands.AddCommand(modulename, shared, command, shorthelp, longhelp, callback);
}
public virtual ISceneObject DeserializeObject(string representation)
{
return null;
}
public virtual bool AllowScriptCrossings
{
get { return false; }
}
}
}