* Moved all the delegates and enumerations I could find inside of parent classes, part of a major cleanup

* Reverted the PathTaper / PathScale code
* Added small bits of xmldoc here and there, trying to clean up now that we have auto-generating docs

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@542 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2006-11-09 10:18:03 +00:00
parent 134193e26d
commit d54bbd9232
20 changed files with 378 additions and 229 deletions

View File

@@ -4,6 +4,9 @@ using System.Text;
namespace libsecondlife
{
/// <summary>
///
/// </summary>
public class ParticleSystem
{
public uint PartStartRGBA;
@@ -47,6 +50,9 @@ namespace libsecondlife
AngleConeEmpty = 0x10
}
/// <summary>
///
/// </summary>
[Flags]
public enum ParticleFlags : ushort
{
@@ -62,11 +68,21 @@ namespace libsecondlife
Emissive = 0x100
}
/// <summary>
///
/// </summary>
/// <param name="data"></param>
/// <param name="pos"></param>
public ParticleSystem(byte[] data, int pos)
{
FromBytes(data, pos);
}
/// <summary>
///
/// </summary>
/// <param name="data"></param>
/// <param name="pos"></param>
private void FromBytes(byte[] data, int pos)
{
int i = pos;