Blend1DInfo.generated.cs 447 B

123456789101112131415161718192021
  1. using System;
  2. using System.Runtime.CompilerServices;
  3. using System.Runtime.InteropServices;
  4. namespace BansheeEngine
  5. {
  6. /** @addtogroup Animation
  7. * @{
  8. */
  9. /// <summary>
  10. /// Defines a 1D blend where multiple animation clips are blended between each other using linear interpolation.
  11. /// </summary>
  12. [StructLayout(LayoutKind.Sequential), SerializeObject]
  13. public partial struct Blend1DInfo
  14. {
  15. public BlendClipInfo[] clips;
  16. }
  17. /** @} */
  18. }