plumbing for future sculpt map caching
parent
1609e7eac0
commit
42fa7cf989
|
@ -26,6 +26,8 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
using System.Drawing;
|
||||||
|
using System.Drawing.Imaging;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using System.Xml.Serialization;
|
using System.Xml.Serialization;
|
||||||
using log4net;
|
using log4net;
|
||||||
|
@ -105,6 +107,7 @@ namespace OpenSim.Framework
|
||||||
[XmlIgnore] private UUID _sculptTexture = UUID.Zero;
|
[XmlIgnore] private UUID _sculptTexture = UUID.Zero;
|
||||||
[XmlIgnore] private byte _sculptType = (byte)0;
|
[XmlIgnore] private byte _sculptType = (byte)0;
|
||||||
[XmlIgnore] private byte[] _sculptData = new byte[0];
|
[XmlIgnore] private byte[] _sculptData = new byte[0];
|
||||||
|
[XmlIgnore] private Image _sculptBitmap = null;
|
||||||
|
|
||||||
// Flexi
|
// Flexi
|
||||||
[XmlIgnore] private int _flexiSoftness = 0;
|
[XmlIgnore] private int _flexiSoftness = 0;
|
||||||
|
@ -562,6 +565,15 @@ namespace OpenSim.Framework
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Image SculptBitmap {
|
||||||
|
get {
|
||||||
|
return _sculptBitmap;
|
||||||
|
}
|
||||||
|
set {
|
||||||
|
_sculptBitmap = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public int FlexiSoftness {
|
public int FlexiSoftness {
|
||||||
get {
|
get {
|
||||||
return _flexiSoftness;
|
return _flexiSoftness;
|
||||||
|
|
|
@ -129,6 +129,7 @@
|
||||||
<Reference name="System"/>
|
<Reference name="System"/>
|
||||||
<Reference name="System.Xml"/>
|
<Reference name="System.Xml"/>
|
||||||
<Reference name="System.Data"/>
|
<Reference name="System.Data"/>
|
||||||
|
<Reference name="System.Drawing"/>
|
||||||
<Reference name="OpenMetaverseTypes.dll"/>
|
<Reference name="OpenMetaverseTypes.dll"/>
|
||||||
<Reference name="OpenMetaverse.dll"/>
|
<Reference name="OpenMetaverse.dll"/>
|
||||||
<Reference name="OpenMetaverse.StructuredData.dll"/>
|
<Reference name="OpenMetaverse.StructuredData.dll"/>
|
||||||
|
|
Loading…
Reference in New Issue