Blend2DInfo.generated.cs 582 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 RRef<AnimationClip> topLeftClip;
  16. public RRef<AnimationClip> topRightClip;
  17. public RRef<AnimationClip> botLeftClip;
  18. public RRef<AnimationClip> botRightClip;
  19. }
  20. /** @} */
  21. }