mirror of
https://github.com/opensim/opensim.git
synced 2026-08-09 18:55:58 +08:00
Implements three new OSSL functions for parcel management: osParcelJoin joins parcels in an area, osParcelSubdivide splits parcels in an area, osParcelSetDetails sets parcel name, description, owner and group owner. Join and Subdivide methods in LandChannel are exposed.
This commit is contained in:
@@ -106,6 +106,21 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
|
||||
// return m_OSSL_Functions.osWindParamGet(plugin, param);
|
||||
// }
|
||||
|
||||
public void osParcelJoin(vector pos1, vector pos2)
|
||||
{
|
||||
m_OSSL_Functions.osParcelJoin(pos1,pos2);
|
||||
}
|
||||
|
||||
public void osParcelSubdivide(vector pos1, vector pos2)
|
||||
{
|
||||
m_OSSL_Functions.osParcelSubdivide(pos1, pos2);
|
||||
}
|
||||
|
||||
public void osParcelSetDetails(vector pos, LSL_List rules)
|
||||
{
|
||||
m_OSSL_Functions.osParcelSetDetails(pos,rules);
|
||||
}
|
||||
|
||||
public double osList2Double(LSL_Types.list src, int index)
|
||||
{
|
||||
return m_OSSL_Functions.osList2Double(src, index);
|
||||
|
||||
Reference in New Issue
Block a user