FbxAnimLayerTest.cs 647 B

1234567891011121314151617181920
  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 FbxAnimLayerTest : Base<FbxAnimLayer>
  13. {
  14. [Test]
  15. public void TestBasics(){
  16. FbxCollectionTest.GenericTests (CreateObject ("anim layer"), Manager);
  17. }
  18. }
  19. }