DOTween43.xml 6.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>DOTween43</name>
  5. </assembly>
  6. <members>
  7. <member name="T:DG.Tweening.ShortcutExtensions43">
  8. <summary>
  9. Methods that extend known Unity objects and allow to directly create and control tweens from their instances.
  10. These, as all DOTween43 methods, require Unity 4.3 or later.
  11. </summary>
  12. </member>
  13. <member name="M:DG.Tweening.ShortcutExtensions43.DOGradientColor(UnityEngine.Material,UnityEngine.Gradient,System.Single)">
  14. <summary>Tweens a Material's color using the given gradient
  15. (NOTE 1: only uses the colors of the gradient, not the alphas - NOTE 2: creates a Sequence, not a Tweener).
  16. Also stores the image as the tween's target so it can be used for filtered operations</summary>
  17. <param name="gradient">The gradient to use</param><param name="duration">The duration of the tween</param>
  18. </member>
  19. <member name="M:DG.Tweening.ShortcutExtensions43.DOGradientColor(UnityEngine.Material,UnityEngine.Gradient,System.String,System.Single)">
  20. <summary>Tweens a Material's named color property using the given gradient
  21. (NOTE 1: only uses the colors of the gradient, not the alphas - NOTE 2: creates a Sequence, not a Tweener).
  22. Also stores the image as the tween's target so it can be used for filtered operations</summary>
  23. <param name="gradient">The gradient to use</param>
  24. <param name="property">The name of the material property to tween (like _Tint or _SpecColor)</param>
  25. <param name="duration">The duration of the tween</param>
  26. </member>
  27. <member name="M:DG.Tweening.ShortcutExtensions43.DOColor(UnityEngine.SpriteRenderer,UnityEngine.Color,System.Single)">
  28. <summary>Tweens a SpriteRenderer's color to the given value.
  29. Also stores the spriteRenderer as the tween's target so it can be used for filtered operations</summary>
  30. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  31. </member>
  32. <member name="M:DG.Tweening.ShortcutExtensions43.DOFade(UnityEngine.SpriteRenderer,System.Single,System.Single)">
  33. <summary>Tweens a Material's alpha color to the given value.
  34. Also stores the spriteRenderer as the tween's target so it can be used for filtered operations</summary>
  35. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  36. </member>
  37. <member name="M:DG.Tweening.ShortcutExtensions43.DOGradientColor(UnityEngine.SpriteRenderer,UnityEngine.Gradient,System.Single)">
  38. <summary>Tweens a SpriteRenderer's color using the given gradient
  39. (NOTE 1: only uses the colors of the gradient, not the alphas - NOTE 2: creates a Sequence, not a Tweener).
  40. Also stores the image as the tween's target so it can be used for filtered operations</summary>
  41. <param name="gradient">The gradient to use</param><param name="duration">The duration of the tween</param>
  42. </member>
  43. <member name="M:DG.Tweening.ShortcutExtensions43.DOMove(UnityEngine.Rigidbody2D,UnityEngine.Vector2,System.Single,System.Boolean)">
  44. <summary>Tweens a Rigidbody2D's position to the given value.
  45. Also stores the Rigidbody2D as the tween's target so it can be used for filtered operations</summary>
  46. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  47. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  48. </member>
  49. <member name="M:DG.Tweening.ShortcutExtensions43.DOMoveX(UnityEngine.Rigidbody2D,System.Single,System.Single,System.Boolean)">
  50. <summary>Tweens a Rigidbody2D's X position to the given value.
  51. Also stores the Rigidbody2D as the tween's target so it can be used for filtered operations</summary>
  52. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  53. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  54. </member>
  55. <member name="M:DG.Tweening.ShortcutExtensions43.DOMoveY(UnityEngine.Rigidbody2D,System.Single,System.Single,System.Boolean)">
  56. <summary>Tweens a Rigidbody2D's Y position to the given value.
  57. Also stores the Rigidbody2D as the tween's target so it can be used for filtered operations</summary>
  58. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  59. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  60. </member>
  61. <member name="M:DG.Tweening.ShortcutExtensions43.DORotate(UnityEngine.Rigidbody2D,System.Single,System.Single)">
  62. <summary>Tweens a Rigidbody2D's rotation to the given value.
  63. Also stores the Rigidbody2D as the tween's target so it can be used for filtered operations</summary>
  64. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  65. </member>
  66. <member name="M:DG.Tweening.ShortcutExtensions43.DOJump(UnityEngine.Rigidbody2D,UnityEngine.Vector2,System.Single,System.Int32,System.Single,System.Boolean)">
  67. <summary>Tweens a Rigidbody2D's position to the given value, while also applying a jump effect along the Y axis.
  68. Returns a Sequence instead of a Tweener.
  69. Also stores the Rigidbody2D as the tween's target so it can be used for filtered operations.
  70. <para>IMPORTANT: a rigidbody2D can't be animated in a jump arc using MovePosition, so the tween will directly set the position</para></summary>
  71. <param name="endValue">The end value to reach</param>
  72. <param name="jumpPower">Power of the jump (the max height of the jump is represented by this plus the final Y offset)</param>
  73. <param name="numJumps">Total number of jumps</param>
  74. <param name="duration">The duration of the tween</param>
  75. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  76. </member>
  77. <member name="M:DG.Tweening.ShortcutExtensions43.DOBlendableColor(UnityEngine.SpriteRenderer,UnityEngine.Color,System.Single)">
  78. <summary>Tweens a SpriteRenderer's color to the given value,
  79. in a way that allows other DOBlendableColor tweens to work together on the same target,
  80. instead than fight each other as multiple DOColor would do.
  81. Also stores the SpriteRenderer as the tween's target so it can be used for filtered operations</summary>
  82. <param name="endValue">The value to tween to</param><param name="duration">The duration of the tween</param>
  83. </member>
  84. </members>
  85. </doc>