-
Notifications
You must be signed in to change notification settings - Fork 0
/
AnimationUtility.h
24 lines (17 loc) · 962 Bytes
/
AnimationUtility.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/****************************************************************************************
Copyright (C) 2015 Autodesk, Inc.
All rights reserved.
Use of this software is subject to the terms of the Autodesk license agreement
provided at the time of installation or download, or which otherwise accompanies
this software in either electronic or hard copy form.
****************************************************************************************/
#ifndef INCLUDE_ANIMATION_UTILITY_H_
#define INCLUDE_ANIMATION_UTILITY_H_
#include <fbxsdk.h>
/** Create a default animation stack and a default animation layer for the given scene.
* /param pScene The scene in which the animation stack and layer are created.
* /param pAnimStack The created animation stack.
* /return The created animation layer.
*/
FbxAnimLayer * CreateDefaultAnimStackAndLayer(FbxScene * pScene, FbxAnimStack* &pAnimStack);
#endif // INCLUDE_ANIMATION_UTILITY_H_