Adds OwnerId and CreatorId properties to MRM.IObjectsoprefactor
parent
e5bcd8b341
commit
074937e0e5
|
@ -97,6 +97,16 @@ namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
|
||||||
/// </summary>
|
/// </summary>
|
||||||
String Description { get; set; }
|
String Description { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns the UUID of the Owner of the Object.
|
||||||
|
/// </summary>
|
||||||
|
UUID OwnerId { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns the UUID of the Creator of the Object.
|
||||||
|
/// </summary>
|
||||||
|
UUID CreatorId { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the root object of a linkset. If this object is the root, it will return itself.
|
/// Returns the root object of a linkset. If this object is the root, it will return itself.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
@ -169,6 +169,16 @@ namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public UUID OwnerId
|
||||||
|
{
|
||||||
|
get { return GetSOP().OwnerID;}
|
||||||
|
}
|
||||||
|
|
||||||
|
public UUID CreatorId
|
||||||
|
{
|
||||||
|
get { return GetSOP().CreatorID;}
|
||||||
|
}
|
||||||
|
|
||||||
public IObject[] Children
|
public IObject[] Children
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
|
Loading…
Reference in New Issue