FbxFileTexture.cs 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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 class FbxFileTexture : FbxTexture {
  12. internal FbxFileTexture(global::System.IntPtr cPtr, bool ignored) : base(cPtr, ignored) { }
  13. // override void Dispose() {base.Dispose();}
  14. public new static FbxFileTexture Create(FbxManager pManager, string pName) {
  15. global::System.IntPtr cPtr = NativeMethods.FbxFileTexture_Create__SWIG_0(FbxManager.getCPtr(pManager), pName);
  16. FbxFileTexture ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxFileTexture(cPtr, false);
  17. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  18. return ret;
  19. }
  20. public new static FbxFileTexture Create(FbxObject pContainer, string pName) {
  21. global::System.IntPtr cPtr = NativeMethods.FbxFileTexture_Create__SWIG_1(FbxObject.getCPtr(pContainer), pName);
  22. FbxFileTexture ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxFileTexture(cPtr, false);
  23. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  24. return ret;
  25. }
  26. public FbxPropertyBool UseMaterial {
  27. get {
  28. FbxPropertyBool ret = new FbxPropertyBool(NativeMethods.FbxFileTexture_UseMaterial_get(swigCPtr), false);
  29. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  30. return ret;
  31. }
  32. }
  33. public FbxPropertyBool UseMipMap {
  34. get {
  35. FbxPropertyBool ret = new FbxPropertyBool(NativeMethods.FbxFileTexture_UseMipMap_get(swigCPtr), false);
  36. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  37. return ret;
  38. }
  39. }
  40. public bool SetFileName(string pName) {
  41. bool ret = NativeMethods.FbxFileTexture_SetFileName(swigCPtr, pName);
  42. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  43. return ret;
  44. }
  45. public bool SetRelativeFileName(string pName) {
  46. bool ret = NativeMethods.FbxFileTexture_SetRelativeFileName(swigCPtr, pName);
  47. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  48. return ret;
  49. }
  50. public string GetFileName() {
  51. string ret = NativeMethods.FbxFileTexture_GetFileName(swigCPtr);
  52. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  53. return ret;
  54. }
  55. public string GetRelativeFileName() {
  56. string ret = NativeMethods.FbxFileTexture_GetRelativeFileName(swigCPtr);
  57. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  58. return ret;
  59. }
  60. public void SetMaterialUse(FbxFileTexture.EMaterialUse pMaterialUse) {
  61. NativeMethods.FbxFileTexture_SetMaterialUse(swigCPtr, (int)pMaterialUse);
  62. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  63. }
  64. public FbxFileTexture.EMaterialUse GetMaterialUse() {
  65. FbxFileTexture.EMaterialUse ret = (FbxFileTexture.EMaterialUse)NativeMethods.FbxFileTexture_GetMaterialUse(swigCPtr);
  66. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  67. return ret;
  68. }
  69. public override int GetHashCode(){
  70. return swigCPtr.Handle.GetHashCode();
  71. }
  72. public bool Equals(FbxFileTexture other) {
  73. if (object.ReferenceEquals(other, null)) { return false; }
  74. return this.swigCPtr.Handle.Equals (other.swigCPtr.Handle);
  75. }
  76. public override bool Equals(object obj){
  77. if (object.ReferenceEquals(obj, null)) { return false; }
  78. /* is obj a subclass of this type; if so use our Equals */
  79. var typed = obj as FbxFileTexture;
  80. if (!object.ReferenceEquals(typed, null)) {
  81. return this.Equals(typed);
  82. }
  83. /* are we a subclass of the other type; if so use their Equals */
  84. if (typeof(FbxFileTexture).IsSubclassOf(obj.GetType())) {
  85. return obj.Equals(this);
  86. }
  87. /* types are unrelated; can't be a match */
  88. return false;
  89. }
  90. public static bool operator == (FbxFileTexture a, FbxFileTexture b) {
  91. if (object.ReferenceEquals(a, b)) { return true; }
  92. if (object.ReferenceEquals(a, null) || object.ReferenceEquals(b, null)) { return false; }
  93. return a.Equals(b);
  94. }
  95. public static bool operator != (FbxFileTexture a, FbxFileTexture b) {
  96. return !(a == b);
  97. }
  98. public enum EMaterialUse {
  99. eModelMaterial,
  100. eDefaultMaterial
  101. }
  102. }
  103. }