UpdateShapeArgs.cs 744 B

123456789101112131415161718192021222324252627
  1. using System;
  2. namespace OpenSim.Framework
  3. {
  4. public class UpdateShapeArgs : EventArgs
  5. {
  6. public uint ObjectLocalID;
  7. public ushort PathBegin;
  8. public byte PathCurve;
  9. public ushort PathEnd;
  10. public sbyte PathRadiusOffset;
  11. public byte PathRevolutions;
  12. public byte PathScaleX;
  13. public byte PathScaleY;
  14. public byte PathShearX;
  15. public byte PathShearY;
  16. public sbyte PathSkew;
  17. public sbyte PathTaperX;
  18. public sbyte PathTaperY;
  19. public sbyte PathTwist;
  20. public sbyte PathTwistBegin;
  21. public ushort ProfileBegin;
  22. public byte ProfileCurve;
  23. public ushort ProfileEnd;
  24. public ushort ProfileHollow;
  25. }
  26. }