NRTrackableQueryFilter.cs 1.1 KB

12345678910111213141516171819202122232425
  1. /****************************************************************************
  2. * Copyright 2019 Nreal Techonology Limited. All rights reserved.
  3. *
  4. * This file is part of NRSDK.
  5. *
  6. * https://www.nreal.ai/
  7. *
  8. *****************************************************************************/
  9. namespace NRKernal
  10. {
  11. /// <summary> A filter for trackable queries. </summary>
  12. public enum NRTrackableQueryFilter
  13. {
  14. /// <summary>
  15. /// Indicates available trackables.
  16. /// </summary>
  17. All,
  18. /// <summary>
  19. /// Indicates new trackables detected in the current NRSDK Frame.
  20. /// </summary>
  21. New,
  22. }
  23. }