//********************************** Banshee Engine (www.banshee3d.com) **************************************************//
//**************** Copyright (c) 2016 Marko Pintera (marko.pintera@gmail.com). All rights reserved. **********************//
using System;
namespace BansheeEngine
{
/** @addtogroup Animation
* @{
*/
///
/// Contains a set of animation curves used within an .
///
public class AnimationCurves
{
///
/// Curves for animating a scene object's position.
///
public NamedVector3Curve[] PositionCurves;
///
/// Curves for animating a scene object's rotation (in euler angles).
///
public NamedVector3Curve[] RotationCurves;
///
/// Curves for animating a scene object's scale.
///
public NamedVector3Curve[] ScaleCurves;
///
/// Curves for animating generic component properties.
///
public NamedFloatCurve[] FloatCurves;
}
/** @} */
}