AnimatedBool.cs 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. // Animancer // https://kybernetik.com.au/animancer // Copyright 2022 Kybernetik //
  2. using UnityEngine.Animations;
  3. using Unity.Collections;
  4. namespace Animancer
  5. {
  6. /// <summary>[Pro-Only]
  7. /// A wrapper which allows access to the value of <see cref="bool"/> properties that are controlled by animations.
  8. /// </summary>
  9. /// <remarks>
  10. /// Documentation: <see href="https://kybernetik.com.au/animancer/docs/manual/ik#animated-properties">Animated Properties</see>
  11. /// </remarks>
  12. /// <example><see href="https://kybernetik.com.au/animancer/docs/examples/jobs">Animation Jobs</see></example>
  13. /// https://kybernetik.com.au/animancer/api/Animancer/AnimatedBool
  14. ///
  15. public class AnimatedBool : AnimatedProperty<AnimatedBool.Job, bool>
  16. {
  17. /************************************************************************************************************************/
  18. /// <summary>
  19. /// Allocates room for a specified number of properties to be filled by
  20. /// <see cref="InitializeProperty(int, Transform, Type, string)"/>.
  21. /// </summary>
  22. public AnimatedBool(IAnimancerComponent animancer, int propertyCount,
  23. NativeArrayOptions options = NativeArrayOptions.ClearMemory)
  24. : base(animancer, propertyCount, options)
  25. { }
  26. /// <summary>Initializes a single property.</summary>
  27. public AnimatedBool(IAnimancerComponent animancer, string propertyName)
  28. : base(animancer, propertyName)
  29. { }
  30. /// <summary>Initializes a group of properties.</summary>
  31. public AnimatedBool(IAnimancerComponent animancer, params string[] propertyNames)
  32. : base(animancer, propertyNames)
  33. { }
  34. /************************************************************************************************************************/
  35. protected override void CreateJob()
  36. {
  37. _Job = new Job() { properties = _Properties, values = _Values };
  38. }
  39. /************************************************************************************************************************/
  40. /// <summary>An <see cref="IAnimationJob"/> which reads an array of <see cref="bool"/> values.</summary>
  41. /// https://kybernetik.com.au/animancer/api/Animancer/Job
  42. ///
  43. public struct Job : IAnimationJob
  44. {
  45. public NativeArray<PropertyStreamHandle> properties;
  46. public NativeArray<bool> values;
  47. public void ProcessRootMotion(AnimationStream stream) { }
  48. public void ProcessAnimation(AnimationStream stream)
  49. {
  50. for (int i = properties.Length - 1; i >= 0; i--)
  51. values[i] = properties[i].GetBool(stream);
  52. }
  53. }
  54. /************************************************************************************************************************/
  55. }
  56. }