* ProfileCurve is now XmlIgnored, and instead constructed from ProfileShape and ProfileHollow
parent
5a6fd21a2c
commit
f1c2dca7c1
|
@ -82,7 +82,10 @@ namespace OpenSim.Framework
|
||||||
public ushort ProfileEnd;
|
public ushort ProfileEnd;
|
||||||
public LLVector3 Scale;
|
public LLVector3 Scale;
|
||||||
public byte PathCurve;
|
public byte PathCurve;
|
||||||
|
|
||||||
|
[XmlIgnore] // -- this one is re-constructed from ProfileShape and ProfileHollow
|
||||||
public byte ProfileCurve;
|
public byte ProfileCurve;
|
||||||
|
|
||||||
public ushort ProfileHollow;
|
public ushort ProfileHollow;
|
||||||
public sbyte PathRadiusOffset;
|
public sbyte PathRadiusOffset;
|
||||||
public byte PathRevolutions;
|
public byte PathRevolutions;
|
||||||
|
@ -120,7 +123,6 @@ namespace OpenSim.Framework
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[XmlIgnore]
|
|
||||||
public HollowShape HollowShape
|
public HollowShape HollowShape
|
||||||
{
|
{
|
||||||
get { return (HollowShape)(ProfileCurve & 0xf0); }
|
get { return (HollowShape)(ProfileCurve & 0xf0); }
|
||||||
|
|
Loading…
Reference in New Issue