FbxSurfaceMaterialTest.cs 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. // ***********************************************************************
  2. // Copyright (c) 2017 Unity Technologies. All rights reserved.
  3. //
  4. // Licensed under the ##LICENSENAME##.
  5. // See LICENSE.md file in the project root for full license information.
  6. // ***********************************************************************
  7. using NUnit.Framework;
  8. using Autodesk.Fbx;
  9. using System.Collections.Generic;
  10. namespace Autodesk.Fbx.UnitTests
  11. {
  12. public class FbxSurfaceMaterialTest : Base<FbxSurfaceMaterial>
  13. {
  14. public static void TestSurface<T>(T material) where T:FbxSurfaceMaterial
  15. {
  16. material.ShadingModel.Get();
  17. material.MultiLayer.Get();
  18. }
  19. [Test]
  20. public void TestBasics()
  21. {
  22. using (var surface = CreateObject()) { TestSurface(surface); }
  23. // Use all the getters
  24. TestGetter(FbxSurfaceMaterial.sShadingModel);
  25. TestGetter(FbxSurfaceMaterial.sMultiLayer);
  26. TestGetter(FbxSurfaceMaterial.sMultiLayerDefault);
  27. TestGetter(FbxSurfaceMaterial.sEmissive);
  28. TestGetter(FbxSurfaceMaterial.sEmissiveFactor);
  29. TestGetter(FbxSurfaceMaterial.sAmbient);
  30. TestGetter(FbxSurfaceMaterial.sAmbientFactor);
  31. TestGetter(FbxSurfaceMaterial.sDiffuse);
  32. TestGetter(FbxSurfaceMaterial.sDiffuseFactor);
  33. TestGetter(FbxSurfaceMaterial.sSpecular);
  34. TestGetter(FbxSurfaceMaterial.sSpecularFactor);
  35. TestGetter(FbxSurfaceMaterial.sShininess);
  36. TestGetter(FbxSurfaceMaterial.sBump);
  37. TestGetter(FbxSurfaceMaterial.sNormalMap);
  38. TestGetter(FbxSurfaceMaterial.sBumpFactor);
  39. TestGetter(FbxSurfaceMaterial.sTransparentColor);
  40. TestGetter(FbxSurfaceMaterial.sTransparencyFactor);
  41. TestGetter(FbxSurfaceMaterial.sReflection);
  42. TestGetter(FbxSurfaceMaterial.sReflectionFactor);
  43. TestGetter(FbxSurfaceMaterial.sDisplacementColor);
  44. TestGetter(FbxSurfaceMaterial.sDisplacementFactor);
  45. TestGetter(FbxSurfaceMaterial.sVectorDisplacementColor);
  46. TestGetter(FbxSurfaceMaterial.sVectorDisplacementFactor);
  47. TestGetter(FbxSurfaceMaterial.sShadingModelDefault);
  48. }
  49. }
  50. public class FbxSurfaceLambertTest : Base<FbxSurfaceLambert>
  51. {
  52. public static void TestLambert<T>(T lambert) where T:FbxSurfaceLambert
  53. {
  54. FbxSurfaceMaterialTest.TestSurface(lambert);
  55. TestGetter(lambert.Emissive);
  56. TestGetter(lambert.EmissiveFactor);
  57. TestGetter(lambert.Ambient);
  58. TestGetter(lambert.AmbientFactor);
  59. TestGetter(lambert.Diffuse);
  60. TestGetter(lambert.DiffuseFactor);
  61. TestGetter(lambert.NormalMap);
  62. TestGetter(lambert.Bump);
  63. TestGetter(lambert.BumpFactor);
  64. TestGetter(lambert.TransparentColor);
  65. TestGetter(lambert.TransparencyFactor);
  66. TestGetter(lambert.DisplacementColor);
  67. TestGetter(lambert.DisplacementFactor);
  68. TestGetter(lambert.VectorDisplacementColor);
  69. TestGetter(lambert.VectorDisplacementFactor);
  70. }
  71. [Test]
  72. public void TestBasics()
  73. {
  74. using (var lambert = CreateObject()) { TestLambert(lambert); }
  75. }
  76. }
  77. public class FbxSurfacePhongTest : Base<FbxSurfacePhong>
  78. {
  79. [Test]
  80. public void TestBasics()
  81. {
  82. using (var phong = CreateObject()) {
  83. FbxSurfaceLambertTest.TestLambert(phong);
  84. TestGetter(phong.Specular);
  85. TestGetter(phong.SpecularFactor);
  86. TestGetter(phong.Shininess);
  87. TestGetter(phong.Reflection);
  88. TestGetter(phong.ReflectionFactor);
  89. }
  90. }
  91. }
  92. }