FbxConnection.cs 793 B

12345678910111213141516171819202122232425262728293031
  1. //------------------------------------------------------------------------------
  2. // <auto-generated />
  3. //
  4. // This file was automatically generated by SWIG (http://www.swig.org).
  5. // Version 3.0.12
  6. //
  7. // Do not make changes to this file unless you know what you are doing--modify
  8. // the SWIG interface file instead.
  9. //------------------------------------------------------------------------------
  10. namespace Autodesk.Fbx {
  11. public static class FbxConnection {
  12. // virtual void Dispose() { }
  13. public enum EType {
  14. eNone = 0,
  15. eSystem = 1 << 0,
  16. eUser = 1 << 1,
  17. eSystemOrUser = eUser|eSystem,
  18. eReference = 1 << 2,
  19. eContains = 1 << 3,
  20. eData = 1 << 4,
  21. eLinkType = eReference|eContains|eData,
  22. eDefault = eUser|eReference,
  23. eUnidirectional = 1 << 7
  24. }
  25. }
  26. }