ParticleSortMode.generated.cs 595 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Runtime.CompilerServices;
  3. using System.Runtime.InteropServices;
  4. namespace BansheeEngine
  5. {
  6. /** @addtogroup Particles
  7. * @{
  8. */
  9. /// <summary>Determines how to sort particles before rendering.</summary>
  10. public enum ParticleSortMode
  11. {
  12. /// <summary>Do not sort the particles.</summary>
  13. None = 0,
  14. /// <summary>Sort by distance from the camera, furthest to nearest.</summary>
  15. Distance = 1,
  16. /// <summary>Sort by age, oldest to youngest.</summary>
  17. OldToYoung = 2,
  18. /// <summary>Sort by age, youngest to oldest.</summary>
  19. YoungToOld = 3
  20. }
  21. /** @} */
  22. }