DOTween46.xml 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>DOTween46</name>
  5. </assembly>
  6. <members>
  7. <member name="T:DG.Tweening.ShortcutExtensions46">
  8. <summary>
  9. Methods that extend known Unity objects and allow to directly create and control tweens from their
  10. instances.
  11. These, as all DOTween46 methods, require Unity 4.6 or later.
  12. </summary>
  13. </member>
  14. <member name="M:DG.Tweening.ShortcutExtensions46.DOFade(UnityEngine.CanvasGroup,System.Single,System.Single)">
  15. <summary>Tweens a CanvasGroup's alpha color to the given value.
  16. Also stores the canvasGroup as the tween's target so it can be used for filtered operations
  17. </summary>
  18. <param name="endValue">The end value to reach</param>
  19. <param name="duration">The duration of the tween</param>
  20. </member>
  21. <member name="M:DG.Tweening.ShortcutExtensions46.DOColor(UnityEngine.UI.Graphic,UnityEngine.Color,System.Single)">
  22. <summary>Tweens an Graphic's color to the given value.
  23. Also stores the image as the tween's target so it can be used for filtered operations
  24. </summary>
  25. <param name="endValue">The end value to reach</param>
  26. <param name="duration">The duration of the tween</param>
  27. </member>
  28. <member name="M:DG.Tweening.ShortcutExtensions46.DOFade(UnityEngine.UI.Graphic,System.Single,System.Single)">
  29. <summary>Tweens an Graphic's alpha color to the given value.
  30. Also stores the image as the tween's target so it can be used for filtered operations
  31. </summary>
  32. <param name="endValue">The end value to reach</param>
  33. <param name="duration">The duration of the tween</param>
  34. </member>
  35. <member name="M:DG.Tweening.ShortcutExtensions46.DOColor(UnityEngine.UI.Image,UnityEngine.Color,System.Single)">
  36. <summary>Tweens an Image's color to the given value.
  37. Also stores the image as the tween's target so it can be used for filtered operations
  38. </summary>
  39. <param name="endValue">The end value to reach</param>
  40. <param name="duration">The duration of the tween</param>
  41. </member>
  42. <member name="M:DG.Tweening.ShortcutExtensions46.DOFade(UnityEngine.UI.Image,System.Single,System.Single)">
  43. <summary>Tweens an Image's alpha color to the given value.
  44. Also stores the image as the tween's target so it can be used for filtered operations
  45. </summary>
  46. <param name="endValue">The end value to reach</param>
  47. <param name="duration">The duration of the tween</param>
  48. </member>
  49. <member name="M:DG.Tweening.ShortcutExtensions46.DOFillAmount(UnityEngine.UI.Image,System.Single,System.Single)">
  50. <summary>Tweens an Image's fillAmount to the given value.
  51. Also stores the image as the tween's target so it can be used for filtered operations
  52. </summary>
  53. <param name="endValue">The end value to reach (0 to 1)</param>
  54. <param name="duration">The duration of the tween</param>
  55. </member>
  56. <member name="M:DG.Tweening.ShortcutExtensions46.DOFlexibleSize(UnityEngine.UI.LayoutElement,UnityEngine.Vector2,System.Single,System.Boolean)">
  57. <summary>Tweens an LayoutElement's flexibleWidth/Height to the given value.
  58. Also stores the LayoutElement as the tween's target so it can be used for filtered operations
  59. </summary>
  60. <param name="endValue">The end value to reach</param>
  61. <param name="duration">The duration of the tween</param>
  62. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  63. </member>
  64. <member name="M:DG.Tweening.ShortcutExtensions46.DOMinSize(UnityEngine.UI.LayoutElement,UnityEngine.Vector2,System.Single,System.Boolean)">
  65. <summary>Tweens an LayoutElement's minWidth/Height to the given value.
  66. Also stores the LayoutElement as the tween's target so it can be used for filtered operations
  67. </summary>
  68. <param name="endValue">The end value to reach</param>
  69. <param name="duration">The duration of the tween</param>
  70. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  71. </member>
  72. <member name="M:DG.Tweening.ShortcutExtensions46.DOPreferredSize(UnityEngine.UI.LayoutElement,UnityEngine.Vector2,System.Single,System.Boolean)">
  73. <summary>Tweens an LayoutElement's preferredWidth/Height to the given value.
  74. Also stores the LayoutElement as the tween's target so it can be used for filtered operations
  75. </summary>
  76. <param name="endValue">The end value to reach</param>
  77. <param name="duration">The duration of the tween</param>
  78. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  79. </member>
  80. <member name="M:DG.Tweening.ShortcutExtensions46.DOColor(UnityEngine.UI.Outline,UnityEngine.Color,System.Single)">
  81. <summary>Tweens a Outline's effectColor to the given value.
  82. Also stores the Outline as the tween's target so it can be used for filtered operations
  83. </summary>
  84. <param name="endValue">The end value to reach</param>
  85. <param name="duration">The duration of the tween</param>
  86. </member>
  87. <member name="M:DG.Tweening.ShortcutExtensions46.DOFade(UnityEngine.UI.Outline,System.Single,System.Single)">
  88. <summary>Tweens a Outline's effectColor alpha to the given value.
  89. Also stores the Outline as the tween's target so it can be used for filtered operations
  90. </summary>
  91. <param name="endValue">The end value to reach</param>
  92. <param name="duration">The duration of the tween</param>
  93. </member>
  94. <member name="M:DG.Tweening.ShortcutExtensions46.DOScale(UnityEngine.UI.Outline,UnityEngine.Vector2,System.Single)">
  95. <summary>Tweens a Outline's effectDistance to the given value.
  96. Also stores the Outline as the tween's target so it can be used for filtered operations
  97. </summary>
  98. <param name="endValue">The end value to reach</param>
  99. <param name="duration">The duration of the tween</param>
  100. </member>
  101. <member name="M:DG.Tweening.ShortcutExtensions46.DOAnchorPos(UnityEngine.RectTransform,UnityEngine.Vector2,System.Single,System.Boolean)">
  102. <summary>Tweens a RectTransform's anchoredPosition to the given value.
  103. Also stores the RectTransform as the tween's target so it can be used for filtered operations
  104. </summary>
  105. <param name="endValue">The end value to reach</param>
  106. <param name="duration">The duration of the tween</param>
  107. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  108. </member>
  109. <member name="M:DG.Tweening.ShortcutExtensions46.DOAnchorPos3D(UnityEngine.RectTransform,UnityEngine.Vector3,System.Single,System.Boolean)">
  110. <summary>Tweens a RectTransform's anchoredPosition3D to the given value.
  111. Also stores the RectTransform as the tween's target so it can be used for filtered operations
  112. </summary>
  113. <param name="endValue">The end value to reach</param>
  114. <param name="duration">The duration of the tween</param>
  115. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  116. </member>
  117. <member name="M:DG.Tweening.ShortcutExtensions46.DOSizeDelta(UnityEngine.RectTransform,UnityEngine.Vector2,System.Single,System.Boolean)">
  118. <summary>Tweens a RectTransform's sizeDelta to the given value.
  119. Also stores the RectTransform as the tween's target so it can be used for filtered operations
  120. </summary>
  121. <param name="endValue">The end value to reach</param>
  122. <param name="duration">The duration of the tween</param>
  123. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  124. </member>
  125. <member name="M:DG.Tweening.ShortcutExtensions46.DOPunchAnchorPos(UnityEngine.RectTransform,UnityEngine.Vector2,System.Single,System.Int32,System.Single,System.Boolean)">
  126. <summary>Punches a RectTransform's anchoredPosition towards the given direction and then back to the
  127. starting one
  128. as if it was connected to the starting position via an elastic.
  129. Also stores the RectTransform as the tween's target so it can be used for filtered operations
  130. </summary>
  131. <param name="punch">The direction and strength of the punch (added to the RectTransform's current
  132. position)
  133. </param>
  134. <param name="duration">The duration of the tween</param>
  135. <param name="vibrato">Indicates how much will the punch vibrate</param>
  136. <param name="elasticity">Represents how much (0 to 1) the vector will go beyond the starting position when
  137. bouncing backwards.
  138. 1 creates a full oscillation between the punch direction and the opposite direction,
  139. while 0 oscillates only between the punch and the start position
  140. </param>
  141. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  142. </member>
  143. <member name="M:DG.Tweening.ShortcutExtensions46.DOShakeAnchorPos(UnityEngine.RectTransform,System.Single,System.Single,System.Int32,System.Single,System.Boolean)">
  144. <summary>Shakes a RectTransform's anchoredPosition with the given values.
  145. Also stores the RectTransform as the tween's target so it can be used for filtered operations
  146. </summary>
  147. <param name="duration">The duration of the tween</param>
  148. <param name="strength">The shake strength</param>
  149. <param name="vibrato">Indicates how much will the shake vibrate</param>
  150. <param name="randomness">Indicates how much the shake will be random (0 to 180 - values higher than 90 kind
  151. of suck, so beware).
  152. Setting it to 0 will shake along a single direction.
  153. </param>
  154. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  155. </member>
  156. <member name="M:DG.Tweening.ShortcutExtensions46.DOShakeAnchorPos(UnityEngine.RectTransform,System.Single,UnityEngine.Vector2,System.Int32,System.Single,System.Boolean)">
  157. <summary>Shakes a RectTransform's anchoredPosition with the given values.
  158. Also stores the RectTransform as the tween's target so it can be used for filtered operations
  159. </summary>
  160. <param name="duration">The duration of the tween</param>
  161. <param name="strength">The shake strength on each axis</param>
  162. <param name="vibrato">Indicates how much will the shake vibrate</param>
  163. <param name="randomness">Indicates how much the shake will be random (0 to 180 - values higher than 90 kind
  164. of suck, so beware).
  165. Setting it to 0 will shake along a single direction.
  166. </param>
  167. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  168. </member>
  169. <member name="M:DG.Tweening.ShortcutExtensions46.DOJumpAnchorPos(UnityEngine.RectTransform,UnityEngine.Vector2,System.Single,System.Int32,System.Single,System.Boolean)">
  170. <summary>Tweens a RectTransform's anchoredPosition to the given value, while also applying a jump effect
  171. along the Y axis.
  172. Returns a Sequence instead of a Tweener.
  173. Also stores the RectTransform as the tween's target so it can be used for filtered operations
  174. </summary>
  175. <param name="endValue">The end value to reach</param>
  176. <param name="jumpPower">Power of the jump (the max height of the jump is represented by this plus the final
  177. Y offset)
  178. </param>
  179. <param name="numJumps">Total number of jumps</param>
  180. <param name="duration">The duration of the tween</param>
  181. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  182. </member>
  183. <member name="M:DG.Tweening.ShortcutExtensions46.DOValue(UnityEngine.UI.Slider,System.Single,System.Single,System.Boolean)">
  184. <summary>Tweens a Slider's value to the given value.
  185. Also stores the Slider as the tween's target so it can be used for filtered operations
  186. </summary>
  187. <param name="endValue">The end value to reach</param>
  188. <param name="duration">The duration of the tween</param>
  189. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  190. </member>
  191. <member name="M:DG.Tweening.ShortcutExtensions46.DOColor(UnityEngine.UI.Text,UnityEngine.Color,System.Single)">
  192. <summary>Tweens a Text's color to the given value.
  193. Also stores the Text as the tween's target so it can be used for filtered operations
  194. </summary>
  195. <param name="endValue">The end value to reach</param>
  196. <param name="duration">The duration of the tween</param>
  197. </member>
  198. <member name="M:DG.Tweening.ShortcutExtensions46.DOFade(UnityEngine.UI.Text,System.Single,System.Single)">
  199. <summary>Tweens a Text's alpha color to the given value.
  200. Also stores the Text as the tween's target so it can be used for filtered operations
  201. </summary>
  202. <param name="endValue">The end value to reach</param>
  203. <param name="duration">The duration of the tween</param>
  204. </member>
  205. <member name="M:DG.Tweening.ShortcutExtensions46.DOText(UnityEngine.UI.Text,System.String,System.Single,System.Boolean,DG.Tweening.ScrambleMode,System.String)">
  206. <summary>Tweens a Text's text to the given value.
  207. Also stores the Text as the tween's target so it can be used for filtered operations
  208. </summary>
  209. <param name="endValue">The end string to tween to</param>
  210. <param name="duration">The duration of the tween</param>
  211. <param name="richTextEnabled">If TRUE (default), rich text will be interpreted correctly while animated,
  212. otherwise all tags will be considered as normal text
  213. </param>
  214. <param name="scrambleMode">The type of scramble mode to use, if any</param>
  215. <param name="scrambleChars">A string containing the characters to use for scrambling.
  216. Use as many characters as possible (minimum 10) because DOTween uses a fast scramble mode which gives
  217. better results with more characters.
  218. Leave it to NULL (default) to use default ones
  219. </param>
  220. </member>
  221. <member name="M:DG.Tweening.ShortcutExtensions46.DOBlendableColor(UnityEngine.UI.Graphic,UnityEngine.Color,System.Single)">
  222. <summary>Tweens a Graphic's color to the given value,
  223. in a way that allows other DOBlendableColor tweens to work together on the same target,
  224. instead than fight each other as multiple DOColor would do.
  225. Also stores the Graphic as the tween's target so it can be used for filtered operations
  226. </summary>
  227. <param name="endValue">The value to tween to</param>
  228. <param name="duration">The duration of the tween</param>
  229. </member>
  230. <member name="M:DG.Tweening.ShortcutExtensions46.DOBlendableColor(UnityEngine.UI.Image,UnityEngine.Color,System.Single)">
  231. <summary>Tweens a Image's color to the given value,
  232. in a way that allows other DOBlendableColor tweens to work together on the same target,
  233. instead than fight each other as multiple DOColor would do.
  234. Also stores the Image as the tween's target so it can be used for filtered operations
  235. </summary>
  236. <param name="endValue">The value to tween to</param>
  237. <param name="duration">The duration of the tween</param>
  238. </member>
  239. <member name="M:DG.Tweening.ShortcutExtensions46.DOBlendableColor(UnityEngine.UI.Text,UnityEngine.Color,System.Single)">
  240. <summary>Tweens a Text's color BY the given value,
  241. in a way that allows other DOBlendableColor tweens to work together on the same target,
  242. instead than fight each other as multiple DOColor would do.
  243. Also stores the Text as the tween's target so it can be used for filtered operations
  244. </summary>
  245. <param name="endValue">The value to tween to</param>
  246. <param name="duration">The duration of the tween</param>
  247. </member>
  248. </members>
  249. </doc>