Reinstate setter for OffsetPosition to allow setting the offset by script
while seatedavinationmerge
parent
19d6aa2bc9
commit
35800d6a86
|
@ -567,6 +567,13 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
public Vector3 OffsetPosition
|
public Vector3 OffsetPosition
|
||||||
{
|
{
|
||||||
get { return m_pos; }
|
get { return m_pos; }
|
||||||
|
set
|
||||||
|
{
|
||||||
|
// There is no offset position when not seated
|
||||||
|
if (ParentID == 0)
|
||||||
|
return;
|
||||||
|
m_pos = value;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
Loading…
Reference in New Issue