replace old Attachoffset by AttachedPos. Comented out possible merge
artifactsavinationmerge
parent
5000a5c038
commit
dc717303d4
|
@ -390,7 +390,7 @@ namespace OpenSim.Region.CoreModules.Framework.InventoryAccess
|
||||||
// Restore attachment data after trip through the sim
|
// Restore attachment data after trip through the sim
|
||||||
if (objectGroup.RootPart.AttachPoint > 0)
|
if (objectGroup.RootPart.AttachPoint > 0)
|
||||||
{
|
{
|
||||||
inventoryStoredPosition = objectGroup.RootPart.AttachOffset;
|
inventoryStoredPosition = objectGroup.RootPart.AttachedPos;
|
||||||
inventoryStoredRotation = objectGroup.RootPart.AttachRotation;
|
inventoryStoredRotation = objectGroup.RootPart.AttachRotation;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2332,16 +2332,17 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
if (e == null || attachment) // Single
|
if (e == null || attachment) // Single
|
||||||
{
|
{
|
||||||
SceneObjectGroup g = SceneObjectSerializer.FromOriginalXmlFormat(xmlData);
|
SceneObjectGroup g = SceneObjectSerializer.FromOriginalXmlFormat(xmlData);
|
||||||
|
/*
|
||||||
if (!attachment)
|
if (!attachment)
|
||||||
{
|
{
|
||||||
g.RootPart.AttachPoint = g.RootPart.Shape.State;
|
g.RootPart.AttachPoint = g.RootPart.Shape.State;
|
||||||
g.RootPart.AttachOffset = g.AbsolutePosition;
|
g.RootPart.AttachedPos = g.AbsolutePosition;
|
||||||
g.RootPart.AttachRotation = g.GroupRotation;
|
g.RootPart.AttachRotation = g.GroupRotation;
|
||||||
if (g.RootPart.Shape.PCode != (byte)PCode.NewTree &&
|
if (g.RootPart.Shape.PCode != (byte)PCode.NewTree &&
|
||||||
g.RootPart.Shape.PCode != (byte)PCode.Tree)
|
g.RootPart.Shape.PCode != (byte)PCode.Tree)
|
||||||
g.RootPart.Shape.State = 0;
|
g.RootPart.Shape.State = 0;
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
objlist.Add(g);
|
objlist.Add(g);
|
||||||
veclist.Add(new Vector3(0, 0, 0));
|
veclist.Add(new Vector3(0, 0, 0));
|
||||||
bbox = g.GetAxisAlignedBoundingBox(out offsetHeight);
|
bbox = g.GetAxisAlignedBoundingBox(out offsetHeight);
|
||||||
|
@ -2360,14 +2361,14 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
foreach (XmlNode n in groups)
|
foreach (XmlNode n in groups)
|
||||||
{
|
{
|
||||||
SceneObjectGroup g = SceneObjectSerializer.FromOriginalXmlFormat(n.OuterXml);
|
SceneObjectGroup g = SceneObjectSerializer.FromOriginalXmlFormat(n.OuterXml);
|
||||||
|
/*
|
||||||
g.RootPart.AttachPoint = g.RootPart.Shape.State;
|
g.RootPart.AttachPoint = g.RootPart.Shape.State;
|
||||||
g.RootPart.AttachOffset = g.AbsolutePosition;
|
g.RootPart.AttachedPos = g.AbsolutePosition;
|
||||||
g.RootPart.AttachRotation = g.GroupRotation;
|
g.RootPart.AttachRotation = g.GroupRotation;
|
||||||
if (g.RootPart.Shape.PCode != (byte)PCode.NewTree &&
|
if (g.RootPart.Shape.PCode != (byte)PCode.NewTree &&
|
||||||
g.RootPart.Shape.PCode != (byte)PCode.Tree)
|
g.RootPart.Shape.PCode != (byte)PCode.Tree)
|
||||||
g.RootPart.Shape.State = 0;
|
g.RootPart.Shape.State = 0;
|
||||||
|
*/
|
||||||
objlist.Add(g);
|
objlist.Add(g);
|
||||||
|
|
||||||
XmlElement el = (XmlElement)n;
|
XmlElement el = (XmlElement)n;
|
||||||
|
|
|
@ -250,9 +250,6 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
[XmlIgnore]
|
[XmlIgnore]
|
||||||
public byte AttachPoint = 0;
|
public byte AttachPoint = 0;
|
||||||
|
|
||||||
[XmlIgnore]
|
|
||||||
public Vector3 AttachOffset = Vector3.Zero;
|
|
||||||
|
|
||||||
[XmlIgnore]
|
[XmlIgnore]
|
||||||
public Quaternion AttachRotation = Quaternion.Identity;
|
public Quaternion AttachRotation = Quaternion.Identity;
|
||||||
|
|
||||||
|
|
|
@ -904,11 +904,11 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
for (int i = 0; i < objlist.Count; i++)
|
for (int i = 0; i < objlist.Count; i++)
|
||||||
{
|
{
|
||||||
SceneObjectGroup group = objlist[i];
|
SceneObjectGroup group = objlist[i];
|
||||||
|
/*
|
||||||
group.RootPart.AttachPoint = group.RootPart.Shape.State;
|
group.RootPart.AttachPoint = group.RootPart.Shape.State;
|
||||||
group.RootPart.AttachOffset = group.AbsolutePosition;
|
group.RootPart.AttachedPos = group.AbsolutePosition;
|
||||||
group.RootPart.AttachRotation = group.GroupRotation;
|
group.RootPart.AttachRotation = group.GroupRotation;
|
||||||
|
*/
|
||||||
group.ResetIDs();
|
group.ResetIDs();
|
||||||
|
|
||||||
SceneObjectPart rootPart = group.GetPart(group.UUID);
|
SceneObjectPart rootPart = group.GetPart(group.UUID);
|
||||||
|
|
|
@ -12801,7 +12801,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
}
|
}
|
||||||
|
|
||||||
group.RootPart.AttachPoint = group.RootPart.Shape.State;
|
group.RootPart.AttachPoint = group.RootPart.Shape.State;
|
||||||
group.RootPart.AttachOffset = group.AbsolutePosition;
|
group.RootPart.AttachedPos = group.AbsolutePosition;
|
||||||
|
|
||||||
group.ResetIDs();
|
group.ResetIDs();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue