Blend2DInfo.generated.cs 558 B

123456789101112131415161718192021222324
  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 2D blend where two animation clips are blended between each other using bilinear interpolation.
  11. /// </summary>
  12. [StructLayout(LayoutKind.Sequential), SerializeObject]
  13. public partial struct Blend2DInfo
  14. {
  15. public AnimationClip topLeftClip;
  16. public AnimationClip topRightClip;
  17. public AnimationClip botLeftClip;
  18. public AnimationClip botRightClip;
  19. }
  20. /** @} */
  21. }