Merge branch 'master' of ssh://diva@opensimulator.org/var/git/opensim
commit
641a789bbc
|
@ -258,26 +258,50 @@ namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
|
|||
|
||||
public Vector3 SitTarget
|
||||
{
|
||||
get { throw new System.NotImplementedException(); }
|
||||
set { throw new System.NotImplementedException(); }
|
||||
get { return GetSOP().SitTargetPosition; }
|
||||
set
|
||||
{
|
||||
if (CanEdit())
|
||||
{
|
||||
GetSOP().SitTargetPosition = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public string SitTargetText
|
||||
{
|
||||
get { throw new System.NotImplementedException(); }
|
||||
set { throw new System.NotImplementedException(); }
|
||||
get { return GetSOP().SitName; }
|
||||
set
|
||||
{
|
||||
if (CanEdit())
|
||||
{
|
||||
GetSOP().SitName = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public string TouchText
|
||||
{
|
||||
get { throw new System.NotImplementedException(); }
|
||||
set { throw new System.NotImplementedException(); }
|
||||
get { return GetSOP().TouchName; }
|
||||
set
|
||||
{
|
||||
if (CanEdit())
|
||||
{
|
||||
GetSOP().TouchName = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public string Text
|
||||
{
|
||||
get { throw new System.NotImplementedException(); }
|
||||
set { throw new System.NotImplementedException(); }
|
||||
get { return GetSOP().Text; }
|
||||
set
|
||||
{
|
||||
if (CanEdit())
|
||||
{
|
||||
GetSOP().SetText(value,new Vector3(1.0f,1.0f,1.0f),1.0f);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public bool IsRotationLockedX
|
||||
|
|
Loading…
Reference in New Issue