FbxLightTest.cs 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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 System.Collections;
  9. using Autodesk.Fbx;
  10. namespace Autodesk.Fbx.UnitTests
  11. {
  12. public class FbxLightTest : FbxNodeAttributeBase<FbxLight>
  13. {
  14. [Test]
  15. public void TestBasics()
  16. {
  17. using (var fbxLight = CreateObject ("light")) {
  18. base.TestBasics(fbxLight, FbxNodeAttribute.EType.eLight);
  19. var shadowTexture = FbxTexture.Create (Manager, "tex");
  20. fbxLight.SetShadowTexture (shadowTexture);
  21. Assert.AreEqual (shadowTexture, fbxLight.GetShadowTexture ());
  22. // test setting null shadow texture
  23. Assert.That (() => { fbxLight.SetShadowTexture(null); }, Throws.Exception.TypeOf<System.ArgumentNullException>());
  24. // test setting invalid texture
  25. shadowTexture.Destroy();
  26. Assert.That (() => { fbxLight.SetShadowTexture(shadowTexture); }, Throws.Exception.TypeOf<System.ArgumentNullException>());
  27. }
  28. }
  29. [Test]
  30. public void TestProperties ()
  31. {
  32. using (var fbxLight = CreateObject ("light")) {
  33. // Get the color. Both the one defined in FbxLight, and the one
  34. // defined in its base class -- they're different functions!
  35. TestGetter (fbxLight.Color);
  36. TestGetter (((FbxNodeAttribute)fbxLight).Color);
  37. // Make sure they return the same property handle under the hood.
  38. // If in a future version that changes, we should rename both
  39. // of the properties to avoid bug reports.
  40. Assert.AreEqual(fbxLight.Color, ((FbxNodeAttribute)fbxLight).Color);
  41. // Get everything else, which behaves normally.
  42. TestGetter (fbxLight.DrawFrontFacingVolumetricLight);
  43. TestGetter (fbxLight.DrawGroundProjection);
  44. TestGetter (fbxLight.DrawVolumetricLight);
  45. TestGetter (fbxLight.FileName);
  46. TestGetter (fbxLight.InnerAngle);
  47. TestGetter (fbxLight.Intensity);
  48. TestGetter (fbxLight.LightType);
  49. TestGetter (fbxLight.OuterAngle);
  50. TestGetter (fbxLight.AreaLightShape);
  51. TestGetter (fbxLight.BottomBarnDoor);
  52. TestGetter (fbxLight.CastLight);
  53. TestGetter (fbxLight.CastShadows);
  54. TestGetter (fbxLight.DecayStart);
  55. TestGetter (fbxLight.DecayType);
  56. TestGetter (fbxLight.EnableBarnDoor);
  57. TestGetter (fbxLight.EnableFarAttenuation);
  58. TestGetter (fbxLight.EnableNearAttenuation);
  59. TestGetter (fbxLight.FarAttenuationEnd);
  60. TestGetter (fbxLight.FarAttenuationStart);
  61. TestGetter (fbxLight.Fog);
  62. TestGetter (fbxLight.LeftBarnDoor);
  63. TestGetter (fbxLight.NearAttenuationEnd);
  64. TestGetter (fbxLight.NearAttenuationStart);
  65. TestGetter (fbxLight.RightBarnDoor);
  66. TestGetter (fbxLight.ShadowColor);
  67. TestGetter (fbxLight.TopBarnDoor);
  68. }
  69. }
  70. }
  71. }