1234567891011121314151617181920 |
- // ***********************************************************************
- // Copyright (c) 2017 Unity Technologies. All rights reserved.
- //
- // Licensed under the ##LICENSENAME##.
- // See LICENSE.md file in the project root for full license information.
- // ***********************************************************************
- using NUnit.Framework;
- using System.Collections;
- using Autodesk.Fbx;
- namespace Autodesk.Fbx.UnitTests
- {
- public class FbxAnimLayerTest : Base<FbxAnimLayer>
- {
- [Test]
- public void TestBasics(){
- FbxCollectionTest.GenericTests (CreateObject ("anim layer"), Manager);
- }
- }
- }
|