CurvesOwnerInspectorHelper.cs 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. using System;
  2. using UnityEngine;
  3. using UnityEngine.Timeline;
  4. namespace UnityEditor.Timeline
  5. {
  6. static class CurvesOwnerInspectorHelper
  7. {
  8. // Because what is animated is not the asset, but the instanced playable,
  9. // we apply the animation clip here to preview what is being shown
  10. // This could be improved doing something more inline with animation mode,
  11. // and reverting values that aren't be recorded later to avoid dirtying the asset
  12. public static void PreparePlayableAsset(ICurvesOwnerInspectorWrapper wrapper)
  13. {
  14. if (Event.current.type != EventType.Repaint)
  15. return;
  16. if (wrapper.serializedPlayableAsset == null)
  17. return;
  18. var curvesOwner = wrapper.curvesOwner;
  19. if (curvesOwner == null || curvesOwner.curves == null)
  20. return;
  21. var timelineWindow = TimelineWindow.instance;
  22. if (timelineWindow == null || timelineWindow.state == null)
  23. return;
  24. // requires preview mode. reset the eval time so previous value is correct value is displayed while toggling
  25. if (!timelineWindow.state.previewMode)
  26. {
  27. wrapper.lastEvalTime = -1;
  28. return;
  29. }
  30. var time = wrapper.ToLocalTime(timelineWindow.state.editSequence.time);
  31. // detect if the time has changed, or if the curves have changed
  32. if (Math.Abs(wrapper.lastEvalTime - time) < TimeUtility.kTimeEpsilon)
  33. {
  34. int curveVersion = AnimationClipCurveCache.Instance.GetCurveInfo(curvesOwner.curves).version;
  35. if (curveVersion == wrapper.lastCurveVersion)
  36. return;
  37. wrapper.lastCurveVersion = curveVersion;
  38. }
  39. wrapper.lastEvalTime = time;
  40. var clipInfo = AnimationClipCurveCache.Instance.GetCurveInfo(curvesOwner.curves);
  41. int count = clipInfo.bindings.Length;
  42. if (count == 0)
  43. return;
  44. wrapper.serializedPlayableAsset.Update();
  45. var prop = wrapper.serializedPlayableAsset.GetIterator();
  46. while (prop.NextVisible(true))
  47. {
  48. if (curvesOwner.IsParameterAnimated(prop.propertyPath))
  49. {
  50. var curve = curvesOwner.GetAnimatedParameter(prop.propertyPath);
  51. switch (prop.propertyType)
  52. {
  53. case SerializedPropertyType.Boolean:
  54. prop.boolValue = curve.Evaluate((float)time) > 0;
  55. break;
  56. case SerializedPropertyType.Float:
  57. prop.floatValue = curve.Evaluate((float)time);
  58. break;
  59. case SerializedPropertyType.Integer:
  60. prop.intValue = Mathf.FloorToInt(curve.Evaluate((float)time));
  61. break;
  62. case SerializedPropertyType.Color:
  63. SetAnimatedValue(curvesOwner, prop, "r", time);
  64. SetAnimatedValue(curvesOwner, prop, "g", time);
  65. SetAnimatedValue(curvesOwner, prop, "b", time);
  66. SetAnimatedValue(curvesOwner, prop, "a", time);
  67. break;
  68. case SerializedPropertyType.Quaternion:
  69. case SerializedPropertyType.Vector4:
  70. SetAnimatedValue(curvesOwner, prop, "w", time);
  71. goto case SerializedPropertyType.Vector3;
  72. case SerializedPropertyType.Vector3:
  73. SetAnimatedValue(curvesOwner, prop, "z", time);
  74. goto case SerializedPropertyType.Vector2;
  75. case SerializedPropertyType.Vector2:
  76. SetAnimatedValue(curvesOwner, prop, "x", time);
  77. SetAnimatedValue(curvesOwner, prop, "y", time);
  78. break;
  79. }
  80. }
  81. }
  82. wrapper.serializedPlayableAsset.ApplyModifiedPropertiesWithoutUndo();
  83. }
  84. static void SetAnimatedValue(ICurvesOwner clip, SerializedProperty property, string path, double localTime)
  85. {
  86. var prop = property.FindPropertyRelative(path);
  87. if (prop != null)
  88. {
  89. var curve = clip.GetAnimatedParameter(prop.propertyPath);
  90. if (curve != null)
  91. prop.floatValue = curve.Evaluate((float)localTime);
  92. }
  93. }
  94. }
  95. }