* 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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user