DOTween50.xml 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>DOTween50</name>
  5. </assembly>
  6. <members>
  7. <member name="T:DG.Tweening.ShortcutExtensions50">
  8. <summary>
  9. Methods that extend known Unity objects and allow to directly create and control tweens from their instances.
  10. These, as all DOTween50 methods, require Unity 5.0 or later.
  11. </summary>
  12. </member>
  13. <member name="M:DG.Tweening.ShortcutExtensions50.DOSetFloat(UnityEngine.Audio.AudioMixer,System.String,System.Single,System.Single)">
  14. <summary>Tweens an AudioMixer's exposed float to the given value.
  15. Also stores the AudioMixer as the tween's target so it can be used for filtered operations.
  16. Note that you need to manually expose a float in an AudioMixerGroup in order to be able to tween it from an AudioMixer.</summary>
  17. <param name="floatName">Name given to the exposed float to set</param>
  18. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  19. </member>
  20. <member name="M:DG.Tweening.ShortcutExtensions50.DOComplete(UnityEngine.Audio.AudioMixer,System.Boolean)">
  21. <summary>
  22. Completes all tweens that have this target as a reference
  23. (meaning tweens that were started from this target, or that had this target added as an Id)
  24. and returns the total number of tweens completed
  25. (meaning the tweens that don't have infinite loops and were not already complete)
  26. </summary>
  27. <param name="withCallbacks">For Sequences only: if TRUE also internal Sequence callbacks will be fired,
  28. otherwise they will be ignored</param>
  29. </member>
  30. <member name="M:DG.Tweening.ShortcutExtensions50.DOKill(UnityEngine.Audio.AudioMixer,System.Boolean)">
  31. <summary>
  32. Kills all tweens that have this target as a reference
  33. (meaning tweens that were started from this target, or that had this target added as an Id)
  34. and returns the total number of tweens killed.
  35. </summary>
  36. <param name="complete">If TRUE completes the tween before killing it</param>
  37. </member>
  38. <member name="M:DG.Tweening.ShortcutExtensions50.DOFlip(UnityEngine.Audio.AudioMixer)">
  39. <summary>
  40. Flips the direction (backwards if it was going forward or viceversa) of all tweens that have this target as a reference
  41. (meaning tweens that were started from this target, or that had this target added as an Id)
  42. and returns the total number of tweens flipped.
  43. </summary>
  44. </member>
  45. <member name="M:DG.Tweening.ShortcutExtensions50.DOGoto(UnityEngine.Audio.AudioMixer,System.Single,System.Boolean)">
  46. <summary>
  47. Sends to the given position all tweens that have this target as a reference
  48. (meaning tweens that were started from this target, or that had this target added as an Id)
  49. and returns the total number of tweens involved.
  50. </summary>
  51. <param name="to">Time position to reach
  52. (if higher than the whole tween duration the tween will simply reach its end)</param>
  53. <param name="andPlay">If TRUE will play the tween after reaching the given position, otherwise it will pause it</param>
  54. </member>
  55. <member name="M:DG.Tweening.ShortcutExtensions50.DOPause(UnityEngine.Audio.AudioMixer)">
  56. <summary>
  57. Pauses all tweens that have this target as a reference
  58. (meaning tweens that were started from this target, or that had this target added as an Id)
  59. and returns the total number of tweens paused.
  60. </summary>
  61. </member>
  62. <member name="M:DG.Tweening.ShortcutExtensions50.DOPlay(UnityEngine.Audio.AudioMixer)">
  63. <summary>
  64. Plays all tweens that have this target as a reference
  65. (meaning tweens that were started from this target, or that had this target added as an Id)
  66. and returns the total number of tweens played.
  67. </summary>
  68. </member>
  69. <member name="M:DG.Tweening.ShortcutExtensions50.DOPlayBackwards(UnityEngine.Audio.AudioMixer)">
  70. <summary>
  71. Plays backwards all tweens that have this target as a reference
  72. (meaning tweens that were started from this target, or that had this target added as an Id)
  73. and returns the total number of tweens played.
  74. </summary>
  75. </member>
  76. <member name="M:DG.Tweening.ShortcutExtensions50.DOPlayForward(UnityEngine.Audio.AudioMixer)">
  77. <summary>
  78. Plays forward all tweens that have this target as a reference
  79. (meaning tweens that were started from this target, or that had this target added as an Id)
  80. and returns the total number of tweens played.
  81. </summary>
  82. </member>
  83. <member name="M:DG.Tweening.ShortcutExtensions50.DORestart(UnityEngine.Audio.AudioMixer)">
  84. <summary>
  85. Restarts all tweens that have this target as a reference
  86. (meaning tweens that were started from this target, or that had this target added as an Id)
  87. and returns the total number of tweens restarted.
  88. </summary>
  89. </member>
  90. <member name="M:DG.Tweening.ShortcutExtensions50.DORewind(UnityEngine.Audio.AudioMixer)">
  91. <summary>
  92. Rewinds all tweens that have this target as a reference
  93. (meaning tweens that were started from this target, or that had this target added as an Id)
  94. and returns the total number of tweens rewinded.
  95. </summary>
  96. </member>
  97. <member name="M:DG.Tweening.ShortcutExtensions50.DOSmoothRewind(UnityEngine.Audio.AudioMixer)">
  98. <summary>
  99. Smoothly rewinds all tweens that have this target as a reference
  100. (meaning tweens that were started from this target, or that had this target added as an Id)
  101. and returns the total number of tweens rewinded.
  102. </summary>
  103. </member>
  104. <member name="M:DG.Tweening.ShortcutExtensions50.DOTogglePause(UnityEngine.Audio.AudioMixer)">
  105. <summary>
  106. Toggles the paused state (plays if it was paused, pauses if it was playing) of all tweens that have this target as a reference
  107. (meaning tweens that were started from this target, or that had this target added as an Id)
  108. and returns the total number of tweens involved.
  109. </summary>
  110. </member>
  111. </members>
  112. </doc>