mirror of
https://github.com/opensim/opensim.git
synced 2026-08-09 02:36:00 +08:00
Simulation handlers (agents & objects) completed.
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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; }
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user