DOTween.XML 177 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>DOTween</name>
  5. </assembly>
  6. <members>
  7. <member name="T:DG.Tweening.AutoPlay">
  8. <summary>
  9. Types of autoPlay behaviours
  10. </summary>
  11. </member>
  12. <member name="F:DG.Tweening.AutoPlay.None">
  13. <summary>No tween is automatically played</summary>
  14. </member>
  15. <member name="F:DG.Tweening.AutoPlay.AutoPlaySequences">
  16. <summary>Only Sequences are automatically played</summary>
  17. </member>
  18. <member name="F:DG.Tweening.AutoPlay.AutoPlayTweeners">
  19. <summary>Only Tweeners are automatically played</summary>
  20. </member>
  21. <member name="F:DG.Tweening.AutoPlay.All">
  22. <summary>All tweens are automatically played</summary>
  23. </member>
  24. <member name="T:DG.Tweening.AxisConstraint">
  25. <summary>
  26. What axis to constrain in case of Vector tweens
  27. </summary>
  28. </member>
  29. <member name="F:DG.Tweening.Core.ABSSequentiable.onStart">
  30. <summary>Called the first time the tween is set in a playing state, after any eventual delay</summary>
  31. </member>
  32. <member name="T:DG.Tweening.Core.DOGetter`1">
  33. <summary>
  34. Used in place of <c>System.Func</c>, which is not available in mscorlib.
  35. </summary>
  36. </member>
  37. <member name="T:DG.Tweening.Core.DOSetter`1">
  38. <summary>
  39. Used in place of <c>System.Action</c>.
  40. </summary>
  41. </member>
  42. <member name="T:DG.Tweening.Core.Debugger">
  43. <summary>
  44. Public so it can be used by lose scripts related to DOTween (like DOTweenAnimation)
  45. </summary>
  46. </member>
  47. <member name="T:DG.Tweening.Core.DOTweenComponent">
  48. <summary>
  49. Used to separate DOTween class from the MonoBehaviour instance (in order to use static constructors on DOTween).
  50. Contains all instance-based methods
  51. </summary>
  52. </member>
  53. <member name="F:DG.Tweening.Core.DOTweenComponent.inspectorUpdater">
  54. <summary>Used internally inside Unity Editor, as a trick to update DOTween's inspector at every frame</summary>
  55. </member>
  56. <member name="M:DG.Tweening.Core.DOTweenComponent.SetCapacity(System.Int32,System.Int32)">
  57. <summary>
  58. Directly sets the current max capacity of Tweeners and Sequences
  59. (meaning how many Tweeners and Sequences can be running at the same time),
  60. so that DOTween doesn't need to automatically increase them in case the max is reached
  61. (which might lead to hiccups when that happens).
  62. Sequences capacity must be less or equal to Tweeners capacity
  63. (if you pass a low Tweener capacity it will be automatically increased to match the Sequence's).
  64. Beware: use this method only when there are no tweens running.
  65. </summary>
  66. <param name="tweenersCapacity">Max Tweeners capacity.
  67. Default: 200</param>
  68. <param name="sequencesCapacity">Max Sequences capacity.
  69. Default: 50</param>
  70. </member>
  71. <member name="T:DG.Tweening.Core.Easing.Bounce">
  72. <summary>
  73. This class contains a C# port of the easing equations created by Robert Penner (http://robertpenner.com/easing).
  74. </summary>
  75. </member>
  76. <member name="M:DG.Tweening.Core.Easing.Bounce.EaseIn(System.Single,System.Single,System.Single,System.Single)">
  77. <summary>
  78. Easing equation function for a bounce (exponentially decaying parabolic bounce) easing in: accelerating from zero velocity.
  79. </summary>
  80. <param name="time">
  81. Current time (in frames or seconds).
  82. </param>
  83. <param name="duration">
  84. Expected easing duration (in frames or seconds).
  85. </param>
  86. <param name="unusedOvershootOrAmplitude">Unused: here to keep same delegate for all ease types.</param>
  87. <param name="unusedPeriod">Unused: here to keep same delegate for all ease types.</param>
  88. <returns>
  89. The eased value.
  90. </returns>
  91. </member>
  92. <member name="M:DG.Tweening.Core.Easing.Bounce.EaseOut(System.Single,System.Single,System.Single,System.Single)">
  93. <summary>
  94. Easing equation function for a bounce (exponentially decaying parabolic bounce) easing out: decelerating from zero velocity.
  95. </summary>
  96. <param name="time">
  97. Current time (in frames or seconds).
  98. </param>
  99. <param name="duration">
  100. Expected easing duration (in frames or seconds).
  101. </param>
  102. <param name="unusedOvershootOrAmplitude">Unused: here to keep same delegate for all ease types.</param>
  103. <param name="unusedPeriod">Unused: here to keep same delegate for all ease types.</param>
  104. <returns>
  105. The eased value.
  106. </returns>
  107. </member>
  108. <member name="M:DG.Tweening.Core.Easing.Bounce.EaseInOut(System.Single,System.Single,System.Single,System.Single)">
  109. <summary>
  110. Easing equation function for a bounce (exponentially decaying parabolic bounce) easing in/out: acceleration until halfway, then deceleration.
  111. </summary>
  112. <param name="time">
  113. Current time (in frames or seconds).
  114. </param>
  115. <param name="duration">
  116. Expected easing duration (in frames or seconds).
  117. </param>
  118. <param name="unusedOvershootOrAmplitude">Unused: here to keep same delegate for all ease types.</param>
  119. <param name="unusedPeriod">Unused: here to keep same delegate for all ease types.</param>
  120. <returns>
  121. The eased value.
  122. </returns>
  123. </member>
  124. <member name="M:DG.Tweening.Core.Easing.EaseManager.Evaluate(DG.Tweening.Tween,System.Single,System.Single,System.Single,System.Single)">
  125. <summary>
  126. Returns a value between 0 and 1 (inclusive) based on the elapsed time and ease selected
  127. </summary>
  128. </member>
  129. <member name="M:DG.Tweening.Core.Easing.EaseManager.Evaluate(DG.Tweening.Ease,DG.Tweening.EaseFunction,System.Single,System.Single,System.Single,System.Single)">
  130. <summary>
  131. Returns a value between 0 and 1 (inclusive) based on the elapsed time and ease selected
  132. </summary>
  133. </member>
  134. <member name="T:DG.Tweening.Core.Easing.EaseCurve">
  135. <summary>
  136. Used to interpret AnimationCurves as eases.
  137. Public so it can be used by external ease factories
  138. </summary>
  139. </member>
  140. <member name="T:DG.Tweening.Core.Enums.UpdateNotice">
  141. <summary>
  142. Additional notices passed to plugins when updating.
  143. Public so it can be used by custom plugins. Internally, only PathPlugin uses it
  144. </summary>
  145. </member>
  146. <member name="F:DG.Tweening.Core.Enums.UpdateNotice.None">
  147. <summary>
  148. None
  149. </summary>
  150. </member>
  151. <member name="F:DG.Tweening.Core.Enums.UpdateNotice.RewindStep">
  152. <summary>
  153. Lets the plugin know that we restarted or rewinded
  154. </summary>
  155. </member>
  156. <member name="T:DG.Tweening.Core.Extensions">
  157. <summary>
  158. Public only so custom shortcuts can access some of these methods
  159. </summary>
  160. </member>
  161. <member name="M:DG.Tweening.Core.Utils.Vector3FromAngle(System.Single,System.Single)">
  162. <summary>
  163. Returns a Vector3 with z = 0
  164. </summary>
  165. </member>
  166. <member name="M:DG.Tweening.Core.Utils.Angle2D(UnityEngine.Vector3,UnityEngine.Vector3)">
  167. <summary>
  168. Returns the 2D angle between two vectors
  169. </summary>
  170. </member>
  171. <member name="T:DG.Tweening.Color2">
  172. <summary>
  173. Struct that stores two colors (used for LineRenderer tweens)
  174. </summary>
  175. </member>
  176. <member name="T:DG.Tweening.TweenCallback">
  177. <summary>
  178. Used for tween callbacks
  179. </summary>
  180. </member>
  181. <member name="T:DG.Tweening.TweenCallback`1">
  182. <summary>
  183. Used for tween callbacks
  184. </summary>
  185. </member>
  186. <member name="T:DG.Tweening.EaseFunction">
  187. <summary>
  188. Used for custom and animationCurve-based ease functions. Must return a value between 0 and 1.
  189. </summary>
  190. </member>
  191. <member name="T:DG.Tweening.CustomPlugins.PureQuaternionPlugin">
  192. <summary>
  193. Straight Quaternion plugin. Instead of using Vector3 values accepts Quaternion values directly.
  194. <para>Beware: doesn't work with LoopType.Incremental (neither directly nor if inside a LoopType.Incremental Sequence).</para>
  195. <para>To use it, call DOTween.To with the plugin parameter overload, passing it <c>PureQuaternionPlugin.Plug()</c> as first parameter
  196. (do not use any of the other public PureQuaternionPlugin methods):</para>
  197. <code>DOTween.To(PureQuaternionPlugin.Plug(), ()=> myQuaternionProperty, x=> myQuaternionProperty = x, myQuaternionEndValue, duration);</code>
  198. </summary>
  199. </member>
  200. <member name="M:DG.Tweening.CustomPlugins.PureQuaternionPlugin.Plug">
  201. <summary>
  202. Plug this plugin inside a DOTween.To call.
  203. <para>Example:</para>
  204. <code>DOTween.To(PureQuaternionPlugin.Plug(), ()=> myQuaternionProperty, x=> myQuaternionProperty = x, myQuaternionEndValue, duration);</code>
  205. </summary>
  206. </member>
  207. <member name="M:DG.Tweening.CustomPlugins.PureQuaternionPlugin.Reset(DG.Tweening.Core.TweenerCore{UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions})">
  208. <summary>INTERNAL: do not use</summary>
  209. </member>
  210. <member name="M:DG.Tweening.CustomPlugins.PureQuaternionPlugin.SetFrom(DG.Tweening.Core.TweenerCore{UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions},System.Boolean)">
  211. <summary>INTERNAL: do not use</summary>
  212. </member>
  213. <member name="M:DG.Tweening.CustomPlugins.PureQuaternionPlugin.ConvertToStartValue(DG.Tweening.Core.TweenerCore{UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions},UnityEngine.Quaternion)">
  214. <summary>INTERNAL: do not use</summary>
  215. </member>
  216. <member name="M:DG.Tweening.CustomPlugins.PureQuaternionPlugin.SetRelativeEndValue(DG.Tweening.Core.TweenerCore{UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions})">
  217. <summary>INTERNAL: do not use</summary>
  218. </member>
  219. <member name="M:DG.Tweening.CustomPlugins.PureQuaternionPlugin.SetChangeValue(DG.Tweening.Core.TweenerCore{UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions})">
  220. <summary>INTERNAL: do not use</summary>
  221. </member>
  222. <member name="M:DG.Tweening.CustomPlugins.PureQuaternionPlugin.GetSpeedBasedDuration(DG.Tweening.Plugins.Options.NoOptions,System.Single,UnityEngine.Quaternion)">
  223. <summary>INTERNAL: do not use</summary>
  224. </member>
  225. <member name="M:DG.Tweening.CustomPlugins.PureQuaternionPlugin.EvaluateAndApply(DG.Tweening.Plugins.Options.NoOptions,DG.Tweening.Tween,System.Boolean,DG.Tweening.Core.DOGetter{UnityEngine.Quaternion},DG.Tweening.Core.DOSetter{UnityEngine.Quaternion},System.Single,UnityEngine.Quaternion,UnityEngine.Quaternion,System.Single,System.Boolean,DG.Tweening.Core.Enums.UpdateNotice)">
  226. <summary>INTERNAL: do not use</summary>
  227. </member>
  228. <member name="T:DG.Tweening.DOTween">
  229. <summary>
  230. Main DOTween class. Contains static methods to create and control tweens in a generic way
  231. </summary>
  232. </member>
  233. <member name="F:DG.Tweening.DOTween.Version">
  234. <summary>DOTween's version</summary>
  235. </member>
  236. <member name="F:DG.Tweening.DOTween.useSafeMode">
  237. <summary>If TRUE (default) makes tweens slightly slower but safer, automatically taking care of a series of things
  238. (like targets becoming null while a tween is playing).
  239. <para>Default: TRUE</para></summary>
  240. </member>
  241. <member name="F:DG.Tweening.DOTween.showUnityEditorReport">
  242. <summary>If TRUE you will get a DOTween report when exiting play mode (only in the Editor).
  243. Useful to know how many max Tweeners and Sequences you reached and optimize your final project accordingly.
  244. Beware, this will slightly slow down your tweens while inside Unity Editor.
  245. <para>Default: FALSE</para></summary>
  246. </member>
  247. <member name="F:DG.Tweening.DOTween.timeScale">
  248. <summary>Global DOTween timeScale.
  249. <para>Default: 1</para></summary>
  250. </member>
  251. <member name="F:DG.Tweening.DOTween.useSmoothDeltaTime">
  252. <summary>If TRUE, DOTween will use Time.smoothDeltaTime instead of Time.deltaTime for UpdateType.Normal and UpdateType.Late tweens
  253. (unless they're set as timeScaleIndependent, in which case this setting will be ignored).
  254. Setting this to TRUE will lead to smoother animations.
  255. <para>Default: FALSE</para></summary>
  256. </member>
  257. <member name="P:DG.Tweening.DOTween.logBehaviour">
  258. <summary>DOTween's log behaviour.
  259. <para>Default: LogBehaviour.ErrorsOnly</para></summary>
  260. </member>
  261. <member name="F:DG.Tweening.DOTween.drawGizmos">
  262. <summary>If TRUE draws path gizmos in Unity Editor (if the gizmos button is active).
  263. Deactivate this if you want to avoid gizmos overhead while in Unity Editor</summary>
  264. </member>
  265. <member name="F:DG.Tweening.DOTween.defaultUpdateType">
  266. <summary>Default updateType for new tweens.
  267. <para>Default: UpdateType.Normal</para></summary>
  268. </member>
  269. <member name="F:DG.Tweening.DOTween.defaultTimeScaleIndependent">
  270. <summary>Sets whether Unity's timeScale should be taken into account by default or not.
  271. <para>Default: false</para></summary>
  272. </member>
  273. <member name="F:DG.Tweening.DOTween.defaultAutoPlay">
  274. <summary>Default autoPlay behaviour for new tweens.
  275. <para>Default: AutoPlay.All</para></summary>
  276. </member>
  277. <member name="F:DG.Tweening.DOTween.defaultAutoKill">
  278. <summary>Default autoKillOnComplete behaviour for new tweens.
  279. <para>Default: TRUE</para></summary>
  280. </member>
  281. <member name="F:DG.Tweening.DOTween.defaultLoopType">
  282. <summary>Default loopType applied to all new tweens.
  283. <para>Default: LoopType.Restart</para></summary>
  284. </member>
  285. <member name="F:DG.Tweening.DOTween.defaultRecyclable">
  286. <summary>If TRUE all newly created tweens are set as recyclable, otherwise not.
  287. <para>Default: FALSE</para></summary>
  288. </member>
  289. <member name="F:DG.Tweening.DOTween.defaultEaseType">
  290. <summary>Default ease applied to all new Tweeners (not to Sequences which always have Ease.Linear as default).
  291. <para>Default: Ease.InOutQuad</para></summary>
  292. </member>
  293. <member name="F:DG.Tweening.DOTween.defaultEaseOvershootOrAmplitude">
  294. <summary>Default overshoot/amplitude used for eases
  295. <para>Default: 1.70158f</para></summary>
  296. </member>
  297. <member name="F:DG.Tweening.DOTween.defaultEasePeriod">
  298. <summary>Default period used for eases
  299. <para>Default: 0</para></summary>
  300. </member>
  301. <member name="M:DG.Tweening.DOTween.Init(System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{DG.Tweening.LogBehaviour})">
  302. <summary>
  303. Must be called once, before the first ever DOTween call/reference,
  304. otherwise it will be called automatically and will use default options.
  305. Calling it a second time won't have any effect.
  306. <para>You can chain <code>SetCapacity</code> to this method, to directly set the max starting size of Tweeners and Sequences:</para>
  307. <code>DOTween.Init(false, false, LogBehaviour.Default).SetCapacity(100, 20);</code>
  308. </summary>
  309. <param name="recycleAllByDefault">If TRUE all new tweens will be set for recycling, meaning that when killed,
  310. instead of being destroyed, they will be put in a pool and reused instead of creating new tweens. This option allows you to avoid
  311. GC allocations by reusing tweens, but you will have to take care of tween references, since they might result active
  312. even if they were killed (since they might have been respawned and are now being used for other tweens).
  313. <para>If you want to automatically set your tween references to NULL when a tween is killed
  314. you can use the OnKill callback like this:</para>
  315. <code>.OnKill(()=> myTweenReference = null)</code>
  316. <para>You can change this setting at any time by changing the static <see cref="F:DG.Tweening.DOTween.defaultRecyclable"/> property,
  317. or you can set the recycling behaviour for each tween separately, using:</para>
  318. <para><code>SetRecyclable(bool recyclable)</code></para>
  319. <para>Default: FALSE</para></param>
  320. <param name="useSafeMode">If TRUE makes tweens slightly slower but safer, automatically taking care of a series of things
  321. (like targets becoming null while a tween is playing).
  322. You can change this setting at any time by changing the static <see cref="F:DG.Tweening.DOTween.useSafeMode"/> property.
  323. <para>Default: FALSE</para></param>
  324. <param name="logBehaviour">Type of logging to use.
  325. You can change this setting at any time by changing the static <see cref="P:DG.Tweening.DOTween.logBehaviour"/> property.
  326. <para>Default: ErrorsOnly</para></param>
  327. </member>
  328. <member name="M:DG.Tweening.DOTween.SetTweensCapacity(System.Int32,System.Int32)">
  329. <summary>
  330. Directly sets the current max capacity of Tweeners and Sequences
  331. (meaning how many Tweeners and Sequences can be running at the same time),
  332. so that DOTween doesn't need to automatically increase them in case the max is reached
  333. (which might lead to hiccups when that happens).
  334. Sequences capacity must be less or equal to Tweeners capacity
  335. (if you pass a low Tweener capacity it will be automatically increased to match the Sequence's).
  336. Beware: use this method only when there are no tweens running.
  337. </summary>
  338. <param name="tweenersCapacity">Max Tweeners capacity.
  339. Default: 200</param>
  340. <param name="sequencesCapacity">Max Sequences capacity.
  341. Default: 50</param>
  342. </member>
  343. <member name="M:DG.Tweening.DOTween.Clear(System.Boolean)">
  344. <summary>
  345. Kills all tweens, clears all cached tween pools and plugins and resets the max Tweeners/Sequences capacities to the default values.
  346. </summary>
  347. <param name="destroy">If TRUE also destroys DOTween's gameObject and resets its initializiation, default settings and everything else
  348. (so that next time you use it it will need to be re-initialized)</param>
  349. </member>
  350. <member name="M:DG.Tweening.DOTween.ClearCachedTweens">
  351. <summary>
  352. Clears all cached tween pools.
  353. </summary>
  354. </member>
  355. <member name="M:DG.Tweening.DOTween.Validate">
  356. <summary>
  357. Checks all active tweens to find and remove eventually invalid ones (usually because their targets became NULL)
  358. and returns the total number of invalid tweens found and removed.
  359. BEWARE: this is a slightly expensive operation so use it with care
  360. </summary>
  361. </member>
  362. <member name="M:DG.Tweening.DOTween.To(DG.Tweening.Core.DOGetter{System.Single},DG.Tweening.Core.DOSetter{System.Single},System.Single,System.Single)">
  363. <summary>Tweens a property or field to the given value using default plugins</summary>
  364. <param name="getter">A getter for the field or property to tween.
  365. <para>Example usage with lambda:</para><code>()=> myProperty</code></param>
  366. <param name="setter">A setter for the field or property to tween
  367. <para>Example usage with lambda:</para><code>x=> myProperty = x</code></param>
  368. <param name="endValue">The end value to reach</param><param name="duration">The tween's duration</param>
  369. </member>
  370. <member name="M:DG.Tweening.DOTween.To(DG.Tweening.Core.DOGetter{System.Double},DG.Tweening.Core.DOSetter{System.Double},System.Double,System.Single)">
  371. <summary>Tweens a property or field to the given value using default plugins</summary>
  372. <param name="getter">A getter for the field or property to tween.
  373. <para>Example usage with lambda:</para><code>()=> myProperty</code></param>
  374. <param name="setter">A setter for the field or property to tween
  375. <para>Example usage with lambda:</para><code>x=> myProperty = x</code></param>
  376. <param name="endValue">The end value to reach</param><param name="duration">The tween's duration</param>
  377. </member>
  378. <member name="M:DG.Tweening.DOTween.To(DG.Tweening.Core.DOGetter{System.Int32},DG.Tweening.Core.DOSetter{System.Int32},System.Int32,System.Single)">
  379. <summary>Tweens a property or field to the given value using default plugins</summary>
  380. <param name="getter">A getter for the field or property to tween.
  381. <para>Example usage with lambda:</para><code>()=> myProperty</code></param>
  382. <param name="setter">A setter for the field or property to tween
  383. <para>Example usage with lambda:</para><code>x=> myProperty = x</code></param>
  384. <param name="endValue">The end value to reach</param><param name="duration">The tween's duration</param>
  385. </member>
  386. <member name="M:DG.Tweening.DOTween.To(DG.Tweening.Core.DOGetter{System.UInt32},DG.Tweening.Core.DOSetter{System.UInt32},System.UInt32,System.Single)">
  387. <summary>Tweens a property or field to the given value using default plugins</summary>
  388. <param name="getter">A getter for the field or property to tween.
  389. <para>Example usage with lambda:</para><code>()=> myProperty</code></param>
  390. <param name="setter">A setter for the field or property to tween
  391. <para>Example usage with lambda:</para><code>x=> myProperty = x</code></param>
  392. <param name="endValue">The end value to reach</param><param name="duration">The tween's duration</param>
  393. </member>
  394. <member name="M:DG.Tweening.DOTween.To(DG.Tweening.Core.DOGetter{System.Int64},DG.Tweening.Core.DOSetter{System.Int64},System.Int64,System.Single)">
  395. <summary>Tweens a property or field to the given value using default plugins</summary>
  396. <param name="getter">A getter for the field or property to tween.
  397. <para>Example usage with lambda:</para><code>()=> myProperty</code></param>
  398. <param name="setter">A setter for the field or property to tween
  399. <para>Example usage with lambda:</para><code>x=> myProperty = x</code></param>
  400. <param name="endValue">The end value to reach</param><param name="duration">The tween's duration</param>
  401. </member>
  402. <member name="M:DG.Tweening.DOTween.To(DG.Tweening.Core.DOGetter{System.UInt64},DG.Tweening.Core.DOSetter{System.UInt64},System.UInt64,System.Single)">
  403. <summary>Tweens a property or field to the given value using default plugins</summary>
  404. <param name="getter">A getter for the field or property to tween.
  405. <para>Example usage with lambda:</para><code>()=> myProperty</code></param>
  406. <param name="setter">A setter for the field or property to tween
  407. <para>Example usage with lambda:</para><code>x=> myProperty = x</code></param>
  408. <param name="endValue">The end value to reach</param><param name="duration">The tween's duration</param>
  409. </member>
  410. <member name="M:DG.Tweening.DOTween.To(DG.Tweening.Core.DOGetter{System.String},DG.Tweening.Core.DOSetter{System.String},System.String,System.Single)">
  411. <summary>Tweens a property or field to the given value using default plugins</summary>
  412. <param name="getter">A getter for the field or property to tween.
  413. <para>Example usage with lambda:</para><code>()=> myProperty</code></param>
  414. <param name="setter">A setter for the field or property to tween
  415. <para>Example usage with lambda:</para><code>x=> myProperty = x</code></param>
  416. <param name="endValue">The end value to reach</param><param name="duration">The tween's duration</param>
  417. </member>
  418. <member name="M:DG.Tweening.DOTween.To(DG.Tweening.Core.DOGetter{UnityEngine.Vector2},DG.Tweening.Core.DOSetter{UnityEngine.Vector2},UnityEngine.Vector2,System.Single)">
  419. <summary>Tweens a property or field to the given value using default plugins</summary>
  420. <param name="getter">A getter for the field or property to tween.
  421. <para>Example usage with lambda:</para><code>()=> myProperty</code></param>
  422. <param name="setter">A setter for the field or property to tween
  423. <para>Example usage with lambda:</para><code>x=> myProperty = x</code></param>
  424. <param name="endValue">The end value to reach</param><param name="duration">The tween's duration</param>
  425. </member>
  426. <member name="M:DG.Tweening.DOTween.To(DG.Tweening.Core.DOGetter{UnityEngine.Vector3},DG.Tweening.Core.DOSetter{UnityEngine.Vector3},UnityEngine.Vector3,System.Single)">
  427. <summary>Tweens a property or field to the given value using default plugins</summary>
  428. <param name="getter">A getter for the field or property to tween.
  429. <para>Example usage with lambda:</para><code>()=> myProperty</code></param>
  430. <param name="setter">A setter for the field or property to tween
  431. <para>Example usage with lambda:</para><code>x=> myProperty = x</code></param>
  432. <param name="endValue">The end value to reach</param><param name="duration">The tween's duration</param>
  433. </member>
  434. <member name="M:DG.Tweening.DOTween.To(DG.Tweening.Core.DOGetter{UnityEngine.Vector4},DG.Tweening.Core.DOSetter{UnityEngine.Vector4},UnityEngine.Vector4,System.Single)">
  435. <summary>Tweens a property or field to the given value using default plugins</summary>
  436. <param name="getter">A getter for the field or property to tween.
  437. <para>Example usage with lambda:</para><code>()=> myProperty</code></param>
  438. <param name="setter">A setter for the field or property to tween
  439. <para>Example usage with lambda:</para><code>x=> myProperty = x</code></param>
  440. <param name="endValue">The end value to reach</param><param name="duration">The tween's duration</param>
  441. </member>
  442. <member name="M:DG.Tweening.DOTween.To(DG.Tweening.Core.DOGetter{UnityEngine.Quaternion},DG.Tweening.Core.DOSetter{UnityEngine.Quaternion},UnityEngine.Vector3,System.Single)">
  443. <summary>Tweens a property or field to the given value using default plugins</summary>
  444. <param name="getter">A getter for the field or property to tween.
  445. <para>Example usage with lambda:</para><code>()=> myProperty</code></param>
  446. <param name="setter">A setter for the field or property to tween
  447. <para>Example usage with lambda:</para><code>x=> myProperty = x</code></param>
  448. <param name="endValue">The end value to reach</param><param name="duration">The tween's duration</param>
  449. </member>
  450. <member name="M:DG.Tweening.DOTween.To(DG.Tweening.Core.DOGetter{UnityEngine.Color},DG.Tweening.Core.DOSetter{UnityEngine.Color},UnityEngine.Color,System.Single)">
  451. <summary>Tweens a property or field to the given value using default plugins</summary>
  452. <param name="getter">A getter for the field or property to tween.
  453. <para>Example usage with lambda:</para><code>()=> myProperty</code></param>
  454. <param name="setter">A setter for the field or property to tween
  455. <para>Example usage with lambda:</para><code>x=> myProperty = x</code></param>
  456. <param name="endValue">The end value to reach</param><param name="duration">The tween's duration</param>
  457. </member>
  458. <member name="M:DG.Tweening.DOTween.To(DG.Tweening.Core.DOGetter{UnityEngine.Rect},DG.Tweening.Core.DOSetter{UnityEngine.Rect},UnityEngine.Rect,System.Single)">
  459. <summary>Tweens a property or field to the given value using default plugins</summary>
  460. <param name="getter">A getter for the field or property to tween.
  461. <para>Example usage with lambda:</para><code>()=> myProperty</code></param>
  462. <param name="setter">A setter for the field or property to tween
  463. <para>Example usage with lambda:</para><code>x=> myProperty = x</code></param>
  464. <param name="endValue">The end value to reach</param><param name="duration">The tween's duration</param>
  465. </member>
  466. <member name="M:DG.Tweening.DOTween.To(DG.Tweening.Core.DOGetter{UnityEngine.RectOffset},DG.Tweening.Core.DOSetter{UnityEngine.RectOffset},UnityEngine.RectOffset,System.Single)">
  467. <summary>Tweens a property or field to the given value using default plugins</summary>
  468. <param name="getter">A getter for the field or property to tween.
  469. <para>Example usage with lambda:</para><code>()=> myProperty</code></param>
  470. <param name="setter">A setter for the field or property to tween
  471. <para>Example usage with lambda:</para><code>x=> myProperty = x</code></param>
  472. <param name="endValue">The end value to reach</param><param name="duration">The tween's duration</param>
  473. </member>
  474. <member name="M:DG.Tweening.DOTween.To``3(DG.Tweening.Plugins.Core.ABSTweenPlugin{``0,``1,``2},DG.Tweening.Core.DOGetter{``0},DG.Tweening.Core.DOSetter{``0},``1,System.Single)">
  475. <summary>Tweens a property or field to the given value using a custom plugin</summary>
  476. <param name="plugin">The plugin to use. Each custom plugin implements a static <code>Get()</code> method
  477. you'll need to call to assign the correct plugin in the correct way, like this:
  478. <para><code>CustomPlugin.Get()</code></para></param>
  479. <param name="getter">A getter for the field or property to tween.
  480. <para>Example usage with lambda:</para><code>()=> myProperty</code></param>
  481. <param name="setter">A setter for the field or property to tween
  482. <para>Example usage with lambda:</para><code>x=> myProperty = x</code></param>
  483. <param name="endValue">The end value to reach</param><param name="duration">The tween's duration</param>
  484. </member>
  485. <member name="M:DG.Tweening.DOTween.ToAxis(DG.Tweening.Core.DOGetter{UnityEngine.Vector3},DG.Tweening.Core.DOSetter{UnityEngine.Vector3},System.Single,System.Single,DG.Tweening.AxisConstraint)">
  486. <summary>Tweens only one axis of a Vector3 to the given value using default plugins.</summary>
  487. <param name="getter">A getter for the field or property to tween.
  488. <para>Example usage with lambda:</para><code>()=> myProperty</code></param>
  489. <param name="setter">A setter for the field or property to tween
  490. <para>Example usage with lambda:</para><code>x=> myProperty = x</code></param>
  491. <param name="endValue">The end value to reach</param><param name="duration">The tween's duration</param>
  492. <param name="axisConstraint">The axis to tween</param>
  493. </member>
  494. <member name="M:DG.Tweening.DOTween.ToAlpha(DG.Tweening.Core.DOGetter{UnityEngine.Color},DG.Tweening.Core.DOSetter{UnityEngine.Color},System.Single,System.Single)">
  495. <summary>Tweens only the alpha of a Color to the given value using default plugins</summary>
  496. <param name="getter">A getter for the field or property to tween.
  497. <para>Example usage with lambda:</para><code>()=> myProperty</code></param>
  498. <param name="setter">A setter for the field or property to tween
  499. <para>Example usage with lambda:</para><code>x=> myProperty = x</code></param>
  500. <param name="endValue">The end value to reach</param><param name="duration">The tween's duration</param>
  501. </member>
  502. <member name="M:DG.Tweening.DOTween.To(DG.Tweening.Core.DOSetter{System.Single},System.Single,System.Single,System.Single)">
  503. <summary>Tweens a virtual property from the given start to the given end value
  504. and implements a setter that allows to use that value with an external method or a lambda
  505. <para>Example:</para>
  506. <code>To(MyMethod, 0, 12, 0.5f);</code>
  507. <para>Where MyMethod is a function that accepts a float parameter (which will be the result of the virtual tween)</para></summary>
  508. <param name="setter">The action to perform with the tweened value</param>
  509. <param name="startValue">The value to start from</param>
  510. <param name="endValue">The end value to reach</param>
  511. <param name="duration">The duration of the virtual tween
  512. </param>
  513. </member>
  514. <member name="M:DG.Tweening.DOTween.Punch(DG.Tweening.Core.DOGetter{UnityEngine.Vector3},DG.Tweening.Core.DOSetter{UnityEngine.Vector3},UnityEngine.Vector3,System.Single,System.Int32,System.Single)">
  515. <summary>Punches a Vector3 towards the given direction and then back to the starting one
  516. as if it was connected to the starting position via an elastic.
  517. <para>This tween type generates some GC allocations at startup</para></summary>
  518. <param name="getter">A getter for the field or property to tween.
  519. <para>Example usage with lambda:</para><code>()=> myProperty</code></param>
  520. <param name="setter">A setter for the field or property to tween
  521. <para>Example usage with lambda:</para><code>x=> myProperty = x</code></param>
  522. <param name="direction">The direction and strength of the punch</param>
  523. <param name="duration">The duration of the tween</param>
  524. <param name="vibrato">Indicates how much will the punch vibrate</param>
  525. <param name="elasticity">Represents how much (0 to 1) the vector will go beyond the starting position when bouncing backwards.
  526. 1 creates a full oscillation between the direction and the opposite decaying direction,
  527. while 0 oscillates only between the starting position and the decaying direction</param>
  528. </member>
  529. <member name="M:DG.Tweening.DOTween.Shake(DG.Tweening.Core.DOGetter{UnityEngine.Vector3},DG.Tweening.Core.DOSetter{UnityEngine.Vector3},System.Single,System.Single,System.Int32,System.Single,System.Boolean,System.Boolean)">
  530. <summary>Shakes a Vector3 with the given values.</summary>
  531. <param name="getter">A getter for the field or property to tween.
  532. <para>Example usage with lambda:</para><code>()=> myProperty</code></param>
  533. <param name="setter">A setter for the field or property to tween
  534. <para>Example usage with lambda:</para><code>x=> myProperty = x</code></param>
  535. <param name="duration">The duration of the tween</param>
  536. <param name="strength">The shake strength</param>
  537. <param name="vibrato">Indicates how much will the shake vibrate</param>
  538. <param name="randomness">Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware).
  539. Setting it to 0 will shake along a single direction and behave like a random punch.</param>
  540. <param name="ignoreZAxis">If TRUE only shakes on the X Y axis (looks better with things like cameras).</param>
  541. <param name="fadeOut">If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not</param>
  542. </member>
  543. <member name="M:DG.Tweening.DOTween.Shake(DG.Tweening.Core.DOGetter{UnityEngine.Vector3},DG.Tweening.Core.DOSetter{UnityEngine.Vector3},System.Single,UnityEngine.Vector3,System.Int32,System.Single,System.Boolean)">
  544. <summary>Shakes a Vector3 with the given values.</summary>
  545. <param name="getter">A getter for the field or property to tween.
  546. <para>Example usage with lambda:</para><code>()=> myProperty</code></param>
  547. <param name="setter">A setter for the field or property to tween
  548. <para>Example usage with lambda:</para><code>x=> myProperty = x</code></param>
  549. <param name="duration">The duration of the tween</param>
  550. <param name="strength">The shake strength on each axis</param>
  551. <param name="vibrato">Indicates how much will the shake vibrate</param>
  552. <param name="randomness">Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware).
  553. Setting it to 0 will shake along a single direction and behave like a random punch.</param>
  554. <param name="fadeOut">If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not</param>
  555. </member>
  556. <member name="M:DG.Tweening.DOTween.ToArray(DG.Tweening.Core.DOGetter{UnityEngine.Vector3},DG.Tweening.Core.DOSetter{UnityEngine.Vector3},UnityEngine.Vector3[],System.Single[])">
  557. <summary>Tweens a property or field to the given values using default plugins.
  558. Ease is applied between each segment and not as a whole.
  559. <para>This tween type generates some GC allocations at startup</para></summary>
  560. <param name="getter">A getter for the field or property to tween.
  561. <para>Example usage with lambda:</para><code>()=> myProperty</code></param>
  562. <param name="setter">A setter for the field or property to tween
  563. <para>Example usage with lambda:</para><code>x=> myProperty = x</code></param>
  564. <param name="endValues">The end values to reach for each segment. This array must have the same length as <code>durations</code></param>
  565. <param name="durations">The duration of each segment. This array must have the same length as <code>endValues</code></param>
  566. </member>
  567. <member name="M:DG.Tweening.DOTween.Sequence">
  568. <summary>
  569. Returns a new <see cref="M:DG.Tweening.DOTween.Sequence"/> to be used for tween groups
  570. </summary>
  571. </member>
  572. <member name="M:DG.Tweening.DOTween.CompleteAll(System.Boolean)">
  573. <summary>Completes all tweens and returns the number of actual tweens completed
  574. (meaning tweens that don't have infinite loops and were not already complete)</summary>
  575. <param name="withCallbacks">For Sequences only: if TRUE also internal Sequence callbacks will be fired,
  576. otherwise they will be ignored</param>
  577. </member>
  578. <member name="M:DG.Tweening.DOTween.Complete(System.Object,System.Boolean)">
  579. <summary>Completes all tweens with the given ID or target and returns the number of actual tweens completed
  580. (meaning the tweens that don't have infinite loops and were not already complete)</summary>
  581. <param name="withCallbacks">For Sequences only: if TRUE internal Sequence callbacks will be fired,
  582. otherwise they will be ignored</param>
  583. </member>
  584. <member name="M:DG.Tweening.DOTween.FlipAll">
  585. <summary>Flips all tweens (changing their direction to forward if it was backwards and viceversa),
  586. then returns the number of actual tweens flipped</summary>
  587. </member>
  588. <member name="M:DG.Tweening.DOTween.Flip(System.Object)">
  589. <summary>Flips the tweens with the given ID or target (changing their direction to forward if it was backwards and viceversa),
  590. then returns the number of actual tweens flipped</summary>
  591. </member>
  592. <member name="M:DG.Tweening.DOTween.GotoAll(System.Single,System.Boolean)">
  593. <summary>Sends all tweens to the given position (calculating also eventual loop cycles) and returns the actual tweens involved</summary>
  594. </member>
  595. <member name="M:DG.Tweening.DOTween.Goto(System.Object,System.Single,System.Boolean)">
  596. <summary>Sends all tweens with the given ID or target to the given position (calculating also eventual loop cycles)
  597. and returns the actual tweens involved</summary>
  598. </member>
  599. <member name="M:DG.Tweening.DOTween.KillAll(System.Boolean)">
  600. <summary>Kills all tweens and returns the number of actual tweens killed</summary>
  601. <param name="complete">If TRUE completes the tweens before killing them</param>
  602. </member>
  603. <member name="M:DG.Tweening.DOTween.KillAll(System.Boolean,System.Object[])">
  604. <summary>Kills all tweens and returns the number of actual tweens killed</summary>
  605. <param name="complete">If TRUE completes the tweens before killing them</param>
  606. <param name="idsOrTargetsToExclude">Eventual IDs or targets to exclude from the killing</param>
  607. </member>
  608. <member name="M:DG.Tweening.DOTween.Kill(System.Object,System.Boolean)">
  609. <summary>Kills all tweens with the given ID or target and returns the number of actual tweens killed</summary>
  610. <param name="complete">If TRUE completes the tweens before killing them</param>
  611. </member>
  612. <member name="M:DG.Tweening.DOTween.PauseAll">
  613. <summary>Pauses all tweens and returns the number of actual tweens paused</summary>
  614. </member>
  615. <member name="M:DG.Tweening.DOTween.Pause(System.Object)">
  616. <summary>Pauses all tweens with the given ID or target and returns the number of actual tweens paused
  617. (meaning the tweens that were actually playing and have been paused)</summary>
  618. </member>
  619. <member name="M:DG.Tweening.DOTween.PlayAll">
  620. <summary>Plays all tweens and returns the number of actual tweens played
  621. (meaning tweens that were not already playing or complete)</summary>
  622. </member>
  623. <member name="M:DG.Tweening.DOTween.Play(System.Object)">
  624. <summary>Plays all tweens with the given ID or target and returns the number of actual tweens played
  625. (meaning the tweens that were not already playing or complete)</summary>
  626. </member>
  627. <member name="M:DG.Tweening.DOTween.Play(System.Object,System.Object)">
  628. <summary>Plays all tweens with the given target and the given ID, and returns the number of actual tweens played
  629. (meaning the tweens that were not already playing or complete)</summary>
  630. </member>
  631. <member name="M:DG.Tweening.DOTween.PlayBackwardsAll">
  632. <summary>Plays backwards all tweens and returns the number of actual tweens played
  633. (meaning tweens that were not already started, playing backwards or rewinded)</summary>
  634. </member>
  635. <member name="M:DG.Tweening.DOTween.PlayBackwards(System.Object)">
  636. <summary>Plays backwards all tweens with the given ID or target and returns the number of actual tweens played
  637. (meaning the tweens that were not already started, playing backwards or rewinded)</summary>
  638. </member>
  639. <member name="M:DG.Tweening.DOTween.PlayBackwards(System.Object,System.Object)">
  640. <summary>Plays backwards all tweens with the given target and ID and returns the number of actual tweens played
  641. (meaning the tweens that were not already started, playing backwards or rewinded)</summary>
  642. </member>
  643. <member name="M:DG.Tweening.DOTween.PlayForwardAll">
  644. <summary>Plays forward all tweens and returns the number of actual tweens played
  645. (meaning tweens that were not already playing forward or complete)</summary>
  646. </member>
  647. <member name="M:DG.Tweening.DOTween.PlayForward(System.Object)">
  648. <summary>Plays forward all tweens with the given ID or target and returns the number of actual tweens played
  649. (meaning the tweens that were not already playing forward or complete)</summary>
  650. </member>
  651. <member name="M:DG.Tweening.DOTween.PlayForward(System.Object,System.Object)">
  652. <summary>Plays forward all tweens with the given target and ID and returns the number of actual tweens played
  653. (meaning the tweens that were not already started, playing backwards or rewinded)</summary>
  654. </member>
  655. <member name="M:DG.Tweening.DOTween.RestartAll(System.Boolean)">
  656. <summary>Restarts all tweens, then returns the number of actual tweens restarted</summary>
  657. </member>
  658. <member name="M:DG.Tweening.DOTween.Restart(System.Object,System.Boolean)">
  659. <summary>Restarts all tweens with the given ID or target, then returns the number of actual tweens restarted</summary>
  660. </member>
  661. <member name="M:DG.Tweening.DOTween.Restart(System.Object,System.Object,System.Boolean)">
  662. <summary>Restarts all tweens with the given target and the given ID, and returns the number of actual tweens played
  663. (meaning the tweens that were not already playing or complete)</summary>
  664. </member>
  665. <member name="M:DG.Tweening.DOTween.RewindAll(System.Boolean)">
  666. <summary>Rewinds and pauses all tweens, then returns the number of actual tweens rewinded
  667. (meaning tweens that were not already rewinded)</summary>
  668. </member>
  669. <member name="M:DG.Tweening.DOTween.Rewind(System.Object,System.Boolean)">
  670. <summary>Rewinds and pauses all tweens with the given ID or target, then returns the number of actual tweens rewinded
  671. (meaning the tweens that were not already rewinded)</summary>
  672. </member>
  673. <member name="M:DG.Tweening.DOTween.SmoothRewindAll">
  674. <summary>Smoothly rewinds all tweens (delays excluded), then returns the number of actual tweens rewinding/rewinded
  675. (meaning tweens that were not already rewinded).
  676. A "smooth rewind" animates the tween to its start position,
  677. skipping all elapsed loops (except in case of LoopType.Incremental) while keeping the animation fluent.
  678. <para>Note that a tween that was smoothly rewinded will have its play direction flipped</para></summary>
  679. </member>
  680. <member name="M:DG.Tweening.DOTween.SmoothRewind(System.Object)">
  681. <summary>Smoothly rewinds all tweens (delays excluded) with the given ID or target, then returns the number of actual tweens rewinding/rewinded
  682. (meaning the tweens that were not already rewinded).
  683. A "smooth rewind" animates the tween to its start position,
  684. skipping all elapsed loops (except in case of LoopType.Incremental) while keeping the animation fluent.
  685. <para>Note that a tween that was smoothly rewinded will have its play direction flipped</para></summary>
  686. </member>
  687. <member name="M:DG.Tweening.DOTween.TogglePauseAll">
  688. <summary>Toggles the play state of all tweens and returns the number of actual tweens toggled
  689. (meaning tweens that could be played or paused, depending on the toggle state)</summary>
  690. </member>
  691. <member name="M:DG.Tweening.DOTween.TogglePause(System.Object)">
  692. <summary>Toggles the play state of all tweens with the given ID or target and returns the number of actual tweens toggled
  693. (meaning the tweens that could be played or paused, depending on the toggle state)</summary>
  694. </member>
  695. <member name="M:DG.Tweening.DOTween.IsTweening(System.Object)">
  696. <summary>
  697. Returns TRUE if a tween with the given ID or target is active (regardless if it's playing or not).
  698. <para>You can also use this to know if a shortcut tween is active for a given target.</para>
  699. <para>Example:</para>
  700. <para><code>transform.DOMoveX(45, 1); // transform is automatically added as the tween target</code></para>
  701. <para><code>DOTween.IsTweening(transform); // Returns true</code></para>
  702. </summary>
  703. </member>
  704. <member name="M:DG.Tweening.DOTween.TotalPlayingTweens">
  705. <summary>
  706. Returns the total number of active and playing tweens.
  707. A tween is considered as playing even if its delay is actually playing
  708. </summary>
  709. </member>
  710. <member name="M:DG.Tweening.DOTween.PlayingTweens">
  711. <summary>
  712. Returns a list of all active tweens in a playing state.
  713. Returns NULL if there are no active playing tweens.
  714. <para>Beware: each time you call this method a new list is generated, so use it for debug only</para>
  715. </summary>
  716. </member>
  717. <member name="M:DG.Tweening.DOTween.PausedTweens">
  718. <summary>
  719. Returns a list of all active tweens in a paused state.
  720. Returns NULL if there are no active paused tweens.
  721. <para>Beware: each time you call this method a new list is generated, so use it for debug only</para>
  722. </summary>
  723. </member>
  724. <member name="M:DG.Tweening.DOTween.TweensById(System.Object,System.Boolean)">
  725. <summary>
  726. Returns a list of all active tweens with the given id.
  727. Returns NULL if there are no active tweens with the given id.
  728. <para>Beware: each time you call this method a new list is generated</para>
  729. <param name="playingOnly">If TRUE returns only the tweens with the given ID that are currently playing</param>
  730. </summary>
  731. </member>
  732. <member name="M:DG.Tweening.DOTween.TweensByTarget(System.Object,System.Boolean)">
  733. <summary>
  734. Returns a list of all active tweens with the given target.
  735. Returns NULL if there are no active tweens with the given target.
  736. <para>Beware: each time you call this method a new list is generated</para>
  737. <param name="playingOnly">If TRUE returns only the tweens with the given target that are currently playing</param>
  738. </summary>
  739. </member>
  740. <member name="T:DG.Tweening.DOVirtual">
  741. <summary>
  742. Creates virtual tweens that can be used to change other elements via their OnUpdate calls
  743. </summary>
  744. </member>
  745. <member name="M:DG.Tweening.DOVirtual.Float(System.Single,System.Single,System.Single,DG.Tweening.TweenCallback{System.Single})">
  746. <summary>
  747. Tweens a virtual float.
  748. You can add regular settings to the generated tween,
  749. but do not use <code>SetUpdate</code> or you will overwrite the onVirtualUpdate parameter
  750. </summary>
  751. <param name="from">The value to start from</param>
  752. <param name="to">The value to tween to</param>
  753. <param name="duration">The duration of the tween</param>
  754. <param name="onVirtualUpdate">A callback which must accept a parameter of type float, called at each update</param>
  755. <returns></returns>
  756. </member>
  757. <member name="M:DG.Tweening.DOVirtual.EasedValue(System.Single,System.Single,System.Single,DG.Tweening.Ease)">
  758. <summary>Returns a value based on the given ease and lifetime percentage (0 to 1)</summary>
  759. <param name="from">The value to start from when lifetimePercentage is 0</param>
  760. <param name="to">The value to reach when lifetimePercentage is 1</param>
  761. <param name="lifetimePercentage">The time percentage (0 to 1) at which the value should be taken</param>
  762. <param name="easeType">The type of ease</param>
  763. </member>
  764. <member name="M:DG.Tweening.DOVirtual.EasedValue(System.Single,System.Single,System.Single,DG.Tweening.Ease,System.Single)">
  765. <summary>Returns a value based on the given ease and lifetime percentage (0 to 1)</summary>
  766. <param name="from">The value to start from when lifetimePercentage is 0</param>
  767. <param name="to">The value to reach when lifetimePercentage is 1</param>
  768. <param name="lifetimePercentage">The time percentage (0 to 1) at which the value should be taken</param>
  769. <param name="easeType">The type of ease</param>
  770. <param name="overshoot">Eventual overshoot to use with Back ease</param>
  771. </member>
  772. <member name="M:DG.Tweening.DOVirtual.EasedValue(System.Single,System.Single,System.Single,DG.Tweening.Ease,System.Single,System.Single)">
  773. <summary>Returns a value based on the given ease and lifetime percentage (0 to 1)</summary>
  774. <param name="from">The value to start from when lifetimePercentage is 0</param>
  775. <param name="to">The value to reach when lifetimePercentage is 1</param>
  776. <param name="lifetimePercentage">The time percentage (0 to 1) at which the value should be taken</param>
  777. <param name="easeType">The type of ease</param>
  778. <param name="amplitude">Eventual amplitude to use with Elastic easeType</param>
  779. <param name="period">Eventual period to use with Elastic easeType</param>
  780. </member>
  781. <member name="M:DG.Tweening.DOVirtual.EasedValue(System.Single,System.Single,System.Single,UnityEngine.AnimationCurve)">
  782. <summary>Returns a value based on the given ease and lifetime percentage (0 to 1)</summary>
  783. <param name="from">The value to start from when lifetimePercentage is 0</param>
  784. <param name="to">The value to reach when lifetimePercentage is 1</param>
  785. <param name="lifetimePercentage">The time percentage (0 to 1) at which the value should be taken</param>
  786. <param name="easeCurve">The AnimationCurve to use for ease</param>
  787. </member>
  788. <member name="M:DG.Tweening.DOVirtual.DelayedCall(System.Single,DG.Tweening.TweenCallback,System.Boolean)">
  789. <summary>Fires the given callback after the given time.</summary>
  790. <param name="delay">Callback delay</param>
  791. <param name="callback">Callback to fire when the delay has expired</param>
  792. <param name="ignoreTimeScale">If TRUE (default) ignores Unity's timeScale</param>
  793. </member>
  794. <member name="F:DG.Tweening.Ease.INTERNAL_Zero">
  795. <summary>
  796. Don't assign this! It's assigned automatically when creating 0 duration tweens
  797. </summary>
  798. </member>
  799. <member name="F:DG.Tweening.Ease.INTERNAL_Custom">
  800. <summary>
  801. Don't assign this! It's assigned automatically when setting the ease to an AnimationCurve or to a custom ease function
  802. </summary>
  803. </member>
  804. <member name="T:DG.Tweening.EaseFactory">
  805. <summary>
  806. Allows to wrap ease method in special ways, adding extra features
  807. </summary>
  808. </member>
  809. <member name="M:DG.Tweening.EaseFactory.StopMotion(System.Int32,System.Nullable{DG.Tweening.Ease})">
  810. <summary>
  811. Converts the given ease so that it also creates a stop-motion effect, by playing the tween at the given FPS
  812. </summary>
  813. <param name="motionFps">FPS at which the tween should be played</param>
  814. <param name="ease">Ease type</param>
  815. </member>
  816. <member name="M:DG.Tweening.EaseFactory.StopMotion(System.Int32,UnityEngine.AnimationCurve)">
  817. <summary>
  818. Converts the given ease so that it also creates a stop-motion effect, by playing the tween at the given FPS
  819. </summary>
  820. <param name="motionFps">FPS at which the tween should be played</param>
  821. <param name="animCurve">AnimationCurve to use for the ease</param>
  822. </member>
  823. <member name="M:DG.Tweening.EaseFactory.StopMotion(System.Int32,DG.Tweening.EaseFunction)">
  824. <summary>
  825. Converts the given ease so that it also creates a stop-motion effect, by playing the tween at the given FPS
  826. </summary>
  827. <param name="motionFps">FPS at which the tween should be played</param>
  828. <param name="customEase">Custom ease function to use</param>
  829. </member>
  830. <member name="T:DG.Tweening.IDOTweenInit">
  831. <summary>
  832. Used to allow method chaining with DOTween.Init
  833. </summary>
  834. </member>
  835. <member name="M:DG.Tweening.IDOTweenInit.SetCapacity(System.Int32,System.Int32)">
  836. <summary>
  837. Directly sets the current max capacity of Tweeners and Sequences
  838. (meaning how many Tweeners and Sequences can be running at the same time),
  839. so that DOTween doesn't need to automatically increase them in case the max is reached
  840. (which might lead to hiccups when that happens).
  841. Sequences capacity must be less or equal to Tweeners capacity
  842. (if you pass a low Tweener capacity it will be automatically increased to match the Sequence's).
  843. Beware: use this method only when there are no tweens running.
  844. </summary>
  845. <param name="tweenersCapacity">Max Tweeners capacity.
  846. Default: 200</param>
  847. <param name="sequencesCapacity">Max Sequences capacity.
  848. Default: 50</param>
  849. </member>
  850. <member name="T:DG.Tweening.PathMode">
  851. <summary>
  852. Path mode (used to determine correct LookAt orientation)
  853. </summary>
  854. </member>
  855. <member name="F:DG.Tweening.PathMode.Ignore">
  856. <summary>Ignores the path mode (and thus LookAt behaviour)</summary>
  857. </member>
  858. <member name="F:DG.Tweening.PathMode.Full3D">
  859. <summary>Regular 3D path</summary>
  860. </member>
  861. <member name="F:DG.Tweening.PathMode.TopDown2D">
  862. <summary>2D top-down path</summary>
  863. </member>
  864. <member name="F:DG.Tweening.PathMode.Sidescroller2D">
  865. <summary>2D side-scroller path</summary>
  866. </member>
  867. <member name="T:DG.Tweening.PathType">
  868. <summary>
  869. Type of path to use with DOPath tweens
  870. </summary>
  871. </member>
  872. <member name="F:DG.Tweening.PathType.Linear">
  873. <summary>Linear, composed of straight segments between each waypoint</summary>
  874. </member>
  875. <member name="F:DG.Tweening.PathType.CatmullRom">
  876. <summary>Curved path (which uses Catmull-Rom curves)</summary>
  877. </member>
  878. <member name="T:DG.Tweening.Plugins.Core.PathCore.ControlPoint">
  879. <summary>
  880. Path control point
  881. </summary>
  882. </member>
  883. <member name="M:DG.Tweening.Plugins.Core.PathCore.Path.GetPoint(System.Single,System.Boolean)">
  884. <summary>
  885. Gets the point on the path at the given percentage (0 to 1)
  886. </summary>
  887. <param name="perc">The percentage (0 to 1) at which to get the point</param>
  888. <param name="convertToConstantPerc">If TRUE constant speed is taken into account, otherwise not</param>
  889. </member>
  890. <member name="T:DG.Tweening.Plugins.Vector3ArrayPlugin">
  891. <summary>
  892. This plugin generates some GC allocations at startup
  893. </summary>
  894. </member>
  895. <member name="T:DG.Tweening.Plugins.PathPlugin">
  896. <summary>
  897. Path plugin works exclusively with Transforms
  898. </summary>
  899. </member>
  900. <member name="T:DG.Tweening.RotateMode">
  901. <summary>
  902. Rotation mode used with DORotate methods
  903. </summary>
  904. </member>
  905. <member name="F:DG.Tweening.RotateMode.Fast">
  906. <summary>
  907. Fastest way that never rotates beyond 360°
  908. </summary>
  909. </member>
  910. <member name="F:DG.Tweening.RotateMode.FastBeyond360">
  911. <summary>
  912. Fastest way that rotates beyond 360°
  913. </summary>
  914. </member>
  915. <member name="F:DG.Tweening.RotateMode.WorldAxisAdd">
  916. <summary>
  917. Adds the given rotation to the transform using world axis and an advanced precision mode
  918. (like when using transform.Rotate(Space.World)).
  919. <para>In this mode the end value is is always considered relative</para>
  920. </summary>
  921. </member>
  922. <member name="F:DG.Tweening.RotateMode.LocalAxisAdd">
  923. <summary>
  924. Adds the given rotation to the transform's local axis
  925. (like when rotating an object with the "local" switch enabled in Unity's editor or using transform.Rotate(Space.Self)).
  926. <para>In this mode the end value is is always considered relative</para>
  927. </summary>
  928. </member>
  929. <member name="T:DG.Tweening.ScrambleMode">
  930. <summary>
  931. Type of scramble to apply to string tweens
  932. </summary>
  933. </member>
  934. <member name="F:DG.Tweening.ScrambleMode.None">
  935. <summary>
  936. No scrambling of characters
  937. </summary>
  938. </member>
  939. <member name="F:DG.Tweening.ScrambleMode.All">
  940. <summary>
  941. A-Z + a-z + 0-9 characters
  942. </summary>
  943. </member>
  944. <member name="F:DG.Tweening.ScrambleMode.Uppercase">
  945. <summary>
  946. A-Z characters
  947. </summary>
  948. </member>
  949. <member name="F:DG.Tweening.ScrambleMode.Lowercase">
  950. <summary>
  951. a-z characters
  952. </summary>
  953. </member>
  954. <member name="F:DG.Tweening.ScrambleMode.Numerals">
  955. <summary>
  956. 0-9 characters
  957. </summary>
  958. </member>
  959. <member name="F:DG.Tweening.ScrambleMode.Custom">
  960. <summary>
  961. Custom characters
  962. </summary>
  963. </member>
  964. <member name="T:DG.Tweening.TweenExtensions">
  965. <summary>
  966. Methods that extend Tween objects and allow to control or get data from them
  967. </summary>
  968. </member>
  969. <member name="M:DG.Tweening.TweenExtensions.Complete(DG.Tweening.Tween)">
  970. <summary>Completes the tween</summary>
  971. </member>
  972. <member name="M:DG.Tweening.TweenExtensions.Complete(DG.Tweening.Tween,System.Boolean)">
  973. <summary>Completes the tween</summary>
  974. <param name="withCallbacks">For Sequences only: if TRUE also internal Sequence callbacks will be fired,
  975. otherwise they will be ignored</param>
  976. </member>
  977. <member name="M:DG.Tweening.TweenExtensions.Flip(DG.Tweening.Tween)">
  978. <summary>Flips the direction of this tween (backwards if it was going forward or viceversa)</summary>
  979. </member>
  980. <member name="M:DG.Tweening.TweenExtensions.ForceInit(DG.Tweening.Tween)">
  981. <summary>Forces the tween to initialize its settings immediately</summary>
  982. </member>
  983. <member name="M:DG.Tweening.TweenExtensions.Goto(DG.Tweening.Tween,System.Single,System.Boolean)">
  984. <summary>Send the tween to the given position in time</summary>
  985. <param name="to">Time position to reach
  986. (if higher than the whole tween duration the tween will simply reach its end)</param>
  987. <param name="andPlay">If TRUE will play the tween after reaching the given position, otherwise it will pause it</param>
  988. </member>
  989. <member name="M:DG.Tweening.TweenExtensions.Kill(DG.Tweening.Tween,System.Boolean)">
  990. <summary>Kills the tween</summary>
  991. <param name="complete">If TRUE completes the tween before killing it</param>
  992. </member>
  993. <member name="M:DG.Tweening.TweenExtensions.Pause``1(``0)">
  994. <summary>Pauses the tween</summary>
  995. </member>
  996. <member name="M:DG.Tweening.TweenExtensions.Play``1(``0)">
  997. <summary>Plays the tween</summary>
  998. </member>
  999. <member name="M:DG.Tweening.TweenExtensions.PlayBackwards(DG.Tweening.Tween)">
  1000. <summary>Sets the tween in a backwards direction and plays it</summary>
  1001. </member>
  1002. <member name="M:DG.Tweening.TweenExtensions.PlayForward(DG.Tweening.Tween)">
  1003. <summary>Sets the tween in a forward direction and plays it</summary>
  1004. </member>
  1005. <member name="M:DG.Tweening.TweenExtensions.Restart(DG.Tweening.Tween,System.Boolean)">
  1006. <summary>Restarts the tween from the beginning</summary>
  1007. <param name="includeDelay">If TRUE includes the eventual tween delay, otherwise skips it</param>
  1008. </member>
  1009. <member name="M:DG.Tweening.TweenExtensions.Rewind(DG.Tweening.Tween,System.Boolean)">
  1010. <summary>Rewinds and pauses the tween</summary>
  1011. <param name="includeDelay">If TRUE includes the eventual tween delay, otherwise skips it</param>
  1012. </member>
  1013. <member name="M:DG.Tweening.TweenExtensions.SmoothRewind(DG.Tweening.Tween)">
  1014. <summary>Smoothly rewinds the tween (delays excluded).
  1015. A "smooth rewind" animates the tween to its start position,
  1016. skipping all elapsed loops (except in case of LoopType.Incremental) while keeping the animation fluent.
  1017. If called on a tween who is still waiting for its delay to happen, it will simply set the delay to 0 and pause the tween.
  1018. <para>Note that a tween that was smoothly rewinded will have its play direction flipped</para></summary>
  1019. </member>
  1020. <member name="M:DG.Tweening.TweenExtensions.TogglePause(DG.Tweening.Tween)">
  1021. <summary>Plays the tween if it was paused, pauses it if it was playing</summary>
  1022. </member>
  1023. <member name="M:DG.Tweening.TweenExtensions.GotoWaypoint(DG.Tweening.Tween,System.Int32,System.Boolean)">
  1024. <summary>Send a path tween to the given waypoint.
  1025. Has no effect if this is not a path tween.
  1026. <para>BEWARE, this is a special utility method:
  1027. it works only with Linear eases. Also, the lookAt direction might be wrong after calling this and might need to be set manually
  1028. (because it relies on a smooth path movement and doesn't work well with jumps that encompass dramatic direction changes)</para></summary>
  1029. <param name="waypointIndex">Waypoint index to reach
  1030. (if higher than the max waypoint index the tween will simply go to the last one)</param>
  1031. <param name="andPlay">If TRUE will play the tween after reaching the given waypoint, otherwise it will pause it</param>
  1032. </member>
  1033. <member name="M:DG.Tweening.TweenExtensions.WaitForCompletion(DG.Tweening.Tween)">
  1034. <summary>
  1035. Creates a yield instruction that waits until the tween is killed or complete.
  1036. It can be used inside a coroutine as a yield.
  1037. <para>Example usage:</para><code>yield return myTween.WaitForCompletion();</code>
  1038. </summary>
  1039. </member>
  1040. <member name="M:DG.Tweening.TweenExtensions.WaitForRewind(DG.Tweening.Tween)">
  1041. <summary>
  1042. Creates a yield instruction that waits until the tween is killed or rewinded.
  1043. It can be used inside a coroutine as a yield.
  1044. <para>Example usage:</para><code>yield return myTween.WaitForRewind();</code>
  1045. </summary>
  1046. </member>
  1047. <member name="M:DG.Tweening.TweenExtensions.WaitForKill(DG.Tweening.Tween)">
  1048. <summary>
  1049. Creates a yield instruction that waits until the tween is killed.
  1050. It can be used inside a coroutine as a yield.
  1051. <para>Example usage:</para><code>yield return myTween.WaitForKill();</code>
  1052. </summary>
  1053. </member>
  1054. <member name="M:DG.Tweening.TweenExtensions.WaitForElapsedLoops(DG.Tweening.Tween,System.Int32)">
  1055. <summary>
  1056. Creates a yield instruction that waits until the tween is killed or has gone through the given amount of loops.
  1057. It can be used inside a coroutine as a yield.
  1058. <para>Example usage:</para><code>yield return myTween.WaitForElapsedLoops(2);</code>
  1059. </summary>
  1060. <param name="elapsedLoops">Elapsed loops to wait for</param>
  1061. </member>
  1062. <member name="M:DG.Tweening.TweenExtensions.WaitForPosition(DG.Tweening.Tween,System.Single)">
  1063. <summary>
  1064. Creates a yield instruction that waits until the tween is killed or has reached the given position (loops included, delays excluded).
  1065. It can be used inside a coroutine as a yield.
  1066. <para>Example usage:</para><code>yield return myTween.WaitForPosition(2.5f);</code>
  1067. </summary>
  1068. <param name="position">Position (loops included, delays excluded) to wait for</param>
  1069. </member>
  1070. <member name="M:DG.Tweening.TweenExtensions.WaitForStart(DG.Tweening.Tween)">
  1071. <summary>
  1072. Creates a yield instruction that waits until the tween is killed or started
  1073. (meaning when the tween is set in a playing state the first time, after any eventual delay).
  1074. It can be used inside a coroutine as a yield.
  1075. <para>Example usage:</para><code>yield return myTween.WaitForStart();</code>
  1076. </summary>
  1077. </member>
  1078. <member name="M:DG.Tweening.TweenExtensions.CompletedLoops(DG.Tweening.Tween)">
  1079. <summary>Returns the total number of loops completed by this tween</summary>
  1080. </member>
  1081. <member name="M:DG.Tweening.TweenExtensions.Delay(DG.Tweening.Tween)">
  1082. <summary>Returns the eventual delay set for this tween</summary>
  1083. </member>
  1084. <member name="M:DG.Tweening.TweenExtensions.Duration(DG.Tweening.Tween,System.Boolean)">
  1085. <summary>Returns the duration of this tween (delays excluded).
  1086. <para>NOTE: when using settings like SpeedBased, the duration will be recalculated when the tween starts</para></summary>
  1087. <param name="includeLoops">If TRUE returns the full duration loops included,
  1088. otherwise the duration of a single loop cycle</param>
  1089. </member>
  1090. <member name="M:DG.Tweening.TweenExtensions.Elapsed(DG.Tweening.Tween,System.Boolean)">
  1091. <summary>Returns the elapsed time for this tween (delays exluded)</summary>
  1092. <param name="includeLoops">If TRUE returns the elapsed time since startup loops included,
  1093. otherwise the elapsed time within the current loop cycle</param>
  1094. </member>
  1095. <member name="M:DG.Tweening.TweenExtensions.ElapsedPercentage(DG.Tweening.Tween,System.Boolean)">
  1096. <summary>Returns the elapsed percentage (0 to 1) of this tween (delays exluded)</summary>
  1097. <param name="includeLoops">If TRUE returns the elapsed percentage since startup loops included,
  1098. otherwise the elapsed percentage within the current loop cycle</param>
  1099. </member>
  1100. <member name="M:DG.Tweening.TweenExtensions.ElapsedDirectionalPercentage(DG.Tweening.Tween)">
  1101. <summary>Returns the elapsed percentage (0 to 1) of this tween (delays exluded),
  1102. based on a single loop, and calculating eventual backwards Yoyo loops as 1 to 0 instead of 0 to 1</summary>
  1103. </member>
  1104. <member name="M:DG.Tweening.TweenExtensions.IsActive(DG.Tweening.Tween)">
  1105. <summary>Returns FALSE if this tween has been killed.
  1106. <para>BEWARE: if this tween is recyclable it might have been spawned again for another use and thus return TRUE anyway.</para>
  1107. When working with recyclable tweens you should take care to know when a tween has been killed and manually set your references to NULL.
  1108. If you want to be sure your references are set to NULL when a tween is killed you can use the <code>OnKill</code> callback like this:
  1109. <para><code>.OnKill(()=> myTweenReference = null)</code></para></summary>
  1110. </member>
  1111. <member name="M:DG.Tweening.TweenExtensions.IsBackwards(DG.Tweening.Tween)">
  1112. <summary>Returns TRUE if this tween was reversed and is set to go backwards</summary>
  1113. </member>
  1114. <member name="M:DG.Tweening.TweenExtensions.IsComplete(DG.Tweening.Tween)">
  1115. <summary>Returns TRUE if the tween is complete
  1116. (silently fails and returns FALSE if the tween has been killed)</summary>
  1117. </member>
  1118. <member name="M:DG.Tweening.TweenExtensions.IsInitialized(DG.Tweening.Tween)">
  1119. <summary>Returns TRUE if this tween has been initialized</summary>
  1120. </member>
  1121. <member name="M:DG.Tweening.TweenExtensions.IsPlaying(DG.Tweening.Tween)">
  1122. <summary>Returns TRUE if this tween is playing</summary>
  1123. </member>
  1124. <member name="M:DG.Tweening.TweenExtensions.Loops(DG.Tweening.Tween)">
  1125. <summary>Returns the total number of loops set for this tween
  1126. (returns -1 if the loops are infinite)</summary>
  1127. </member>
  1128. <member name="M:DG.Tweening.TweenExtensions.PathGetPoint(DG.Tweening.Tween,System.Single)">
  1129. <summary>
  1130. Returns a point on a path based on the given path percentage.
  1131. Returns <code>Vector3.zero</code> if this is not a path tween, if the tween is invalid, or if the path is not yet initialized.
  1132. A path is initialized after its tween starts, or immediately if the tween was created with the Path Editor (DOTween Pro feature).
  1133. You can force a path to be initialized by calling <code>myTween.ForceInit()</code>.
  1134. </summary>
  1135. <param name="pathPercentage">Percentage of the path (0 to 1) on which to get the point</param>
  1136. </member>
  1137. <member name="M:DG.Tweening.TweenExtensions.PathGetDrawPoints(DG.Tweening.Tween,System.Int32)">
  1138. <summary>
  1139. Returns an array of points that can be used to draw the path.
  1140. Note that this method generates allocations, because it creates a new array.
  1141. Returns <code>NULL</code> if this is not a path tween, if the tween is invalid, or if the path is not yet initialized.
  1142. A path is initialized after its tween starts, or immediately if the tween was created with the Path Editor (DOTween Pro feature).
  1143. You can force a path to be initialized by calling <code>myTween.ForceInit()</code>.
  1144. </summary>
  1145. <param name="subdivisionsXSegment">How many points to create for each path segment (waypoint to waypoint).
  1146. Only used in case of non-Linear paths</param>
  1147. </member>
  1148. <member name="M:DG.Tweening.TweenExtensions.PathLength(DG.Tweening.Tween)">
  1149. <summary>
  1150. Returns the length of a path.
  1151. Returns -1 if this is not a path tween, if the tween is invalid, or if the path is not yet initialized.
  1152. A path is initialized after its tween starts, or immediately if the tween was created with the Path Editor (DOTween Pro feature).
  1153. You can force a path to be initialized by calling <code>myTween.ForceInit()</code>.
  1154. </summary>
  1155. </member>
  1156. <member name="T:DG.Tweening.LoopType">
  1157. <summary>
  1158. Types of loop
  1159. </summary>
  1160. </member>
  1161. <member name="F:DG.Tweening.LoopType.Restart">
  1162. <summary>Each loop cycle restarts from the beginning</summary>
  1163. </member>
  1164. <member name="F:DG.Tweening.LoopType.Yoyo">
  1165. <summary>The tween moves forward and backwards at alternate cycles</summary>
  1166. </member>
  1167. <member name="F:DG.Tweening.LoopType.Incremental">
  1168. <summary>Continuously increments the tween at the end of each loop cycle (A to B, B to B+(A-B), and so on), thus always moving "onward".
  1169. <para>In case of String tweens works only if the tween is set as relative</para></summary>
  1170. </member>
  1171. <member name="T:DG.Tweening.Sequence">
  1172. <summary>
  1173. Controls other tweens as a group
  1174. </summary>
  1175. </member>
  1176. <member name="T:DG.Tweening.ShortcutExtensions">
  1177. <summary>
  1178. Methods that extend known Unity objects and allow to directly create and control tweens from their instances
  1179. </summary>
  1180. </member>
  1181. <member name="M:DG.Tweening.ShortcutExtensions.DOFade(UnityEngine.AudioSource,System.Single,System.Single)">
  1182. <summary>Tweens an AudioSource's volume to the given value.
  1183. Also stores the AudioSource as the tween's target so it can be used for filtered operations</summary>
  1184. <param name="endValue">The end value to reach (0 to 1)</param><param name="duration">The duration of the tween</param>
  1185. </member>
  1186. <member name="M:DG.Tweening.ShortcutExtensions.DOPitch(UnityEngine.AudioSource,System.Single,System.Single)">
  1187. <summary>Tweens an AudioSource's pitch to the given value.
  1188. Also stores the AudioSource as the tween's target so it can be used for filtered operations</summary>
  1189. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1190. </member>
  1191. <member name="M:DG.Tweening.ShortcutExtensions.DOAspect(UnityEngine.Camera,System.Single,System.Single)">
  1192. <summary>Tweens a Camera's <code>aspect</code> to the given value.
  1193. Also stores the camera as the tween's target so it can be used for filtered operations</summary>
  1194. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1195. </member>
  1196. <member name="M:DG.Tweening.ShortcutExtensions.DOColor(UnityEngine.Camera,UnityEngine.Color,System.Single)">
  1197. <summary>Tweens a Camera's backgroundColor to the given value.
  1198. Also stores the camera as the tween's target so it can be used for filtered operations</summary>
  1199. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1200. </member>
  1201. <member name="M:DG.Tweening.ShortcutExtensions.DOFarClipPlane(UnityEngine.Camera,System.Single,System.Single)">
  1202. <summary>Tweens a Camera's <code>farClipPlane</code> to the given value.
  1203. Also stores the camera as the tween's target so it can be used for filtered operations</summary>
  1204. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1205. </member>
  1206. <member name="M:DG.Tweening.ShortcutExtensions.DOFieldOfView(UnityEngine.Camera,System.Single,System.Single)">
  1207. <summary>Tweens a Camera's <code>fieldOfView</code> to the given value.
  1208. Also stores the camera as the tween's target so it can be used for filtered operations</summary>
  1209. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1210. </member>
  1211. <member name="M:DG.Tweening.ShortcutExtensions.DONearClipPlane(UnityEngine.Camera,System.Single,System.Single)">
  1212. <summary>Tweens a Camera's <code>nearClipPlane</code> to the given value.
  1213. Also stores the camera as the tween's target so it can be used for filtered operations</summary>
  1214. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1215. </member>
  1216. <member name="M:DG.Tweening.ShortcutExtensions.DOOrthoSize(UnityEngine.Camera,System.Single,System.Single)">
  1217. <summary>Tweens a Camera's <code>orthographicSize</code> to the given value.
  1218. Also stores the camera as the tween's target so it can be used for filtered operations</summary>
  1219. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1220. </member>
  1221. <member name="M:DG.Tweening.ShortcutExtensions.DOPixelRect(UnityEngine.Camera,UnityEngine.Rect,System.Single)">
  1222. <summary>Tweens a Camera's <code>pixelRect</code> to the given value.
  1223. Also stores the camera as the tween's target so it can be used for filtered operations</summary>
  1224. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1225. </member>
  1226. <member name="M:DG.Tweening.ShortcutExtensions.DORect(UnityEngine.Camera,UnityEngine.Rect,System.Single)">
  1227. <summary>Tweens a Camera's <code>rect</code> to the given value.
  1228. Also stores the camera as the tween's target so it can be used for filtered operations</summary>
  1229. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1230. </member>
  1231. <member name="M:DG.Tweening.ShortcutExtensions.DOShakePosition(UnityEngine.Camera,System.Single,System.Single,System.Int32,System.Single,System.Boolean)">
  1232. <summary>Shakes a Camera's localPosition along its relative X Y axes with the given values.
  1233. Also stores the camera as the tween's target so it can be used for filtered operations</summary>
  1234. <param name="duration">The duration of the tween</param>
  1235. <param name="strength">The shake strength</param>
  1236. <param name="vibrato">Indicates how much will the shake vibrate</param>
  1237. <param name="randomness">Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware).
  1238. Setting it to 0 will shake along a single direction.</param>
  1239. <param name="fadeOut">If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not</param>
  1240. </member>
  1241. <member name="M:DG.Tweening.ShortcutExtensions.DOShakePosition(UnityEngine.Camera,System.Single,UnityEngine.Vector3,System.Int32,System.Single,System.Boolean)">
  1242. <summary>Shakes a Camera's localPosition along its relative X Y axes with the given values.
  1243. Also stores the camera as the tween's target so it can be used for filtered operations</summary>
  1244. <param name="duration">The duration of the tween</param>
  1245. <param name="strength">The shake strength on each axis</param>
  1246. <param name="vibrato">Indicates how much will the shake vibrate</param>
  1247. <param name="randomness">Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware).
  1248. Setting it to 0 will shake along a single direction.</param>
  1249. <param name="fadeOut">If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not</param>
  1250. </member>
  1251. <member name="M:DG.Tweening.ShortcutExtensions.DOShakeRotation(UnityEngine.Camera,System.Single,System.Single,System.Int32,System.Single,System.Boolean)">
  1252. <summary>Shakes a Camera's localRotation.
  1253. Also stores the camera as the tween's target so it can be used for filtered operations</summary>
  1254. <param name="duration">The duration of the tween</param>
  1255. <param name="strength">The shake strength</param>
  1256. <param name="vibrato">Indicates how much will the shake vibrate</param>
  1257. <param name="randomness">Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware).
  1258. Setting it to 0 will shake along a single direction.</param>
  1259. <param name="fadeOut">If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not</param>
  1260. </member>
  1261. <member name="M:DG.Tweening.ShortcutExtensions.DOShakeRotation(UnityEngine.Camera,System.Single,UnityEngine.Vector3,System.Int32,System.Single,System.Boolean)">
  1262. <summary>Shakes a Camera's localRotation.
  1263. Also stores the camera as the tween's target so it can be used for filtered operations</summary>
  1264. <param name="duration">The duration of the tween</param>
  1265. <param name="strength">The shake strength on each axis</param>
  1266. <param name="vibrato">Indicates how much will the shake vibrate</param>
  1267. <param name="randomness">Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware).
  1268. Setting it to 0 will shake along a single direction.</param>
  1269. <param name="fadeOut">If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not</param>
  1270. </member>
  1271. <member name="M:DG.Tweening.ShortcutExtensions.DOColor(UnityEngine.Light,UnityEngine.Color,System.Single)">
  1272. <summary>Tweens a Light's color to the given value.
  1273. Also stores the light as the tween's target so it can be used for filtered operations</summary>
  1274. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1275. </member>
  1276. <member name="M:DG.Tweening.ShortcutExtensions.DOIntensity(UnityEngine.Light,System.Single,System.Single)">
  1277. <summary>Tweens a Light's intensity to the given value.
  1278. Also stores the light as the tween's target so it can be used for filtered operations</summary>
  1279. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1280. </member>
  1281. <member name="M:DG.Tweening.ShortcutExtensions.DOShadowStrength(UnityEngine.Light,System.Single,System.Single)">
  1282. <summary>Tweens a Light's shadowStrength to the given value.
  1283. Also stores the light as the tween's target so it can be used for filtered operations</summary>
  1284. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1285. </member>
  1286. <member name="M:DG.Tweening.ShortcutExtensions.DOColor(UnityEngine.LineRenderer,DG.Tweening.Color2,DG.Tweening.Color2,System.Single)">
  1287. <summary>Tweens a LineRenderer's color to the given value.
  1288. Also stores the LineRenderer as the tween's target so it can be used for filtered operations.
  1289. <para>Note that this method requires to also insert the start colors for the tween,
  1290. since LineRenderers have no way to get them.</para></summary>
  1291. <param name="startValue">The start value to tween from</param>
  1292. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1293. </member>
  1294. <member name="M:DG.Tweening.ShortcutExtensions.DOColor(UnityEngine.Material,UnityEngine.Color,System.Single)">
  1295. <summary>Tweens a Material's color to the given value.
  1296. Also stores the material as the tween's target so it can be used for filtered operations</summary>
  1297. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1298. </member>
  1299. <member name="M:DG.Tweening.ShortcutExtensions.DOColor(UnityEngine.Material,UnityEngine.Color,System.String,System.Single)">
  1300. <summary>Tweens a Material's named color property to the given value.
  1301. Also stores the material as the tween's target so it can be used for filtered operations</summary>
  1302. <param name="endValue">The end value to reach</param>
  1303. <param name="property">The name of the material property to tween (like _Tint or _SpecColor)</param>
  1304. <param name="duration">The duration of the tween</param>
  1305. </member>
  1306. <member name="M:DG.Tweening.ShortcutExtensions.DOFade(UnityEngine.Material,System.Single,System.Single)">
  1307. <summary>Tweens a Material's alpha color to the given value
  1308. (will have no effect unless your material supports transparency).
  1309. Also stores the material as the tween's target so it can be used for filtered operations</summary>
  1310. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1311. </member>
  1312. <member name="M:DG.Tweening.ShortcutExtensions.DOFade(UnityEngine.Material,System.Single,System.String,System.Single)">
  1313. <summary>Tweens a Material's alpha color to the given value
  1314. (will have no effect unless your material supports transparency).
  1315. Also stores the material as the tween's target so it can be used for filtered operations</summary>
  1316. <param name="endValue">The end value to reach</param>
  1317. <param name="property">The name of the material property to tween (like _Tint or _SpecColor)</param>
  1318. <param name="duration">The duration of the tween</param>
  1319. </member>
  1320. <member name="M:DG.Tweening.ShortcutExtensions.DOFloat(UnityEngine.Material,System.Single,System.String,System.Single)">
  1321. <summary>Tweens a Material's named float property to the given value.
  1322. Also stores the material as the tween's target so it can be used for filtered operations</summary>
  1323. <param name="endValue">The end value to reach</param>
  1324. <param name="property">The name of the material property to tween</param>
  1325. <param name="duration">The duration of the tween</param>
  1326. </member>
  1327. <member name="M:DG.Tweening.ShortcutExtensions.DOOffset(UnityEngine.Material,UnityEngine.Vector2,System.Single)">
  1328. <summary>Tweens a Material's texture offset to the given value.
  1329. Also stores the material as the tween's target so it can be used for filtered operations</summary>
  1330. <param name="endValue">The end value to reach</param>
  1331. <param name="duration">The duration of the tween</param>
  1332. </member>
  1333. <member name="M:DG.Tweening.ShortcutExtensions.DOOffset(UnityEngine.Material,UnityEngine.Vector2,System.String,System.Single)">
  1334. <summary>Tweens a Material's named texture offset property to the given value.
  1335. Also stores the material as the tween's target so it can be used for filtered operations</summary>
  1336. <param name="endValue">The end value to reach</param>
  1337. <param name="property">The name of the material property to tween</param>
  1338. <param name="duration">The duration of the tween</param>
  1339. </member>
  1340. <member name="M:DG.Tweening.ShortcutExtensions.DOTiling(UnityEngine.Material,UnityEngine.Vector2,System.Single)">
  1341. <summary>Tweens a Material's texture scale to the given value.
  1342. Also stores the material as the tween's target so it can be used for filtered operations</summary>
  1343. <param name="endValue">The end value to reach</param>
  1344. <param name="duration">The duration of the tween</param>
  1345. </member>
  1346. <member name="M:DG.Tweening.ShortcutExtensions.DOTiling(UnityEngine.Material,UnityEngine.Vector2,System.String,System.Single)">
  1347. <summary>Tweens a Material's named texture scale property to the given value.
  1348. Also stores the material as the tween's target so it can be used for filtered operations</summary>
  1349. <param name="endValue">The end value to reach</param>
  1350. <param name="property">The name of the material property to tween</param>
  1351. <param name="duration">The duration of the tween</param>
  1352. </member>
  1353. <member name="M:DG.Tweening.ShortcutExtensions.DOVector(UnityEngine.Material,UnityEngine.Vector4,System.String,System.Single)">
  1354. <summary>Tweens a Material's named Vector property to the given value.
  1355. Also stores the material as the tween's target so it can be used for filtered operations</summary>
  1356. <param name="endValue">The end value to reach</param>
  1357. <param name="property">The name of the material property to tween</param>
  1358. <param name="duration">The duration of the tween</param>
  1359. </member>
  1360. <member name="M:DG.Tweening.ShortcutExtensions.DOMove(UnityEngine.Rigidbody,UnityEngine.Vector3,System.Single,System.Boolean)">
  1361. <summary>Tweens a Rigidbody's position to the given value.
  1362. Also stores the rigidbody as the tween's target so it can be used for filtered operations</summary>
  1363. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1364. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  1365. </member>
  1366. <member name="M:DG.Tweening.ShortcutExtensions.DOMoveX(UnityEngine.Rigidbody,System.Single,System.Single,System.Boolean)">
  1367. <summary>Tweens a Rigidbody's X position to the given value.
  1368. Also stores the rigidbody as the tween's target so it can be used for filtered operations</summary>
  1369. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1370. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  1371. </member>
  1372. <member name="M:DG.Tweening.ShortcutExtensions.DOMoveY(UnityEngine.Rigidbody,System.Single,System.Single,System.Boolean)">
  1373. <summary>Tweens a Rigidbody's Y position to the given value.
  1374. Also stores the rigidbody as the tween's target so it can be used for filtered operations</summary>
  1375. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1376. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  1377. </member>
  1378. <member name="M:DG.Tweening.ShortcutExtensions.DOMoveZ(UnityEngine.Rigidbody,System.Single,System.Single,System.Boolean)">
  1379. <summary>Tweens a Rigidbody's Z position to the given value.
  1380. Also stores the rigidbody as the tween's target so it can be used for filtered operations</summary>
  1381. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1382. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  1383. </member>
  1384. <member name="M:DG.Tweening.ShortcutExtensions.DORotate(UnityEngine.Rigidbody,UnityEngine.Vector3,System.Single,DG.Tweening.RotateMode)">
  1385. <summary>Tweens a Rigidbody's rotation to the given value.
  1386. Also stores the rigidbody as the tween's target so it can be used for filtered operations</summary>
  1387. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1388. <param name="mode">Rotation mode</param>
  1389. </member>
  1390. <member name="M:DG.Tweening.ShortcutExtensions.DOLookAt(UnityEngine.Rigidbody,UnityEngine.Vector3,System.Single,DG.Tweening.AxisConstraint,System.Nullable{UnityEngine.Vector3})">
  1391. <summary>Tweens a Rigidbody's rotation so that it will look towards the given position.
  1392. Also stores the rigidbody as the tween's target so it can be used for filtered operations</summary>
  1393. <param name="towards">The position to look at</param><param name="duration">The duration of the tween</param>
  1394. <param name="axisConstraint">Eventual axis constraint for the rotation</param>
  1395. <param name="up">The vector that defines in which direction up is (default: Vector3.up)</param>
  1396. </member>
  1397. <member name="M:DG.Tweening.ShortcutExtensions.DOJump(UnityEngine.Rigidbody,UnityEngine.Vector3,System.Single,System.Int32,System.Single,System.Boolean)">
  1398. <summary>Tweens a Rigidbody's position to the given value, while also applying a jump effect along the Y axis.
  1399. Returns a Sequence instead of a Tweener.
  1400. Also stores the Rigidbody as the tween's target so it can be used for filtered operations</summary>
  1401. <param name="endValue">The end value to reach</param>
  1402. <param name="jumpPower">Power of the jump (the max height of the jump is represented by this plus the final Y offset)</param>
  1403. <param name="numJumps">Total number of jumps</param>
  1404. <param name="duration">The duration of the tween</param>
  1405. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  1406. </member>
  1407. <member name="M:DG.Tweening.ShortcutExtensions.DOResize(UnityEngine.TrailRenderer,System.Single,System.Single,System.Single)">
  1408. <summary>Tweens a TrailRenderer's startWidth/endWidth to the given value.
  1409. Also stores the TrailRenderer as the tween's target so it can be used for filtered operations</summary>
  1410. <param name="toStartWidth">The end startWidth to reach</param><param name="toEndWidth">The end endWidth to reach</param>
  1411. <param name="duration">The duration of the tween</param>
  1412. </member>
  1413. <member name="M:DG.Tweening.ShortcutExtensions.DOTime(UnityEngine.TrailRenderer,System.Single,System.Single)">
  1414. <summary>Tweens a TrailRenderer's time to the given value.
  1415. Also stores the TrailRenderer as the tween's target so it can be used for filtered operations</summary>
  1416. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1417. </member>
  1418. <member name="M:DG.Tweening.ShortcutExtensions.DOMove(UnityEngine.Transform,UnityEngine.Vector3,System.Single,System.Boolean)">
  1419. <summary>Tweens a Transform's position to the given value.
  1420. Also stores the transform as the tween's target so it can be used for filtered operations</summary>
  1421. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1422. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  1423. </member>
  1424. <member name="M:DG.Tweening.ShortcutExtensions.DOMoveX(UnityEngine.Transform,System.Single,System.Single,System.Boolean)">
  1425. <summary>Tweens a Transform's X position to the given value.
  1426. Also stores the transform as the tween's target so it can be used for filtered operations</summary>
  1427. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1428. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  1429. </member>
  1430. <member name="M:DG.Tweening.ShortcutExtensions.DOMoveY(UnityEngine.Transform,System.Single,System.Single,System.Boolean)">
  1431. <summary>Tweens a Transform's Y position to the given value.
  1432. Also stores the transform as the tween's target so it can be used for filtered operations</summary>
  1433. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1434. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  1435. </member>
  1436. <member name="M:DG.Tweening.ShortcutExtensions.DOMoveZ(UnityEngine.Transform,System.Single,System.Single,System.Boolean)">
  1437. <summary>Tweens a Transform's Z position to the given value.
  1438. Also stores the transform as the tween's target so it can be used for filtered operations</summary>
  1439. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1440. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  1441. </member>
  1442. <member name="M:DG.Tweening.ShortcutExtensions.DOLocalMove(UnityEngine.Transform,UnityEngine.Vector3,System.Single,System.Boolean)">
  1443. <summary>Tweens a Transform's localPosition to the given value.
  1444. Also stores the transform as the tween's target so it can be used for filtered operations</summary>
  1445. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1446. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  1447. </member>
  1448. <member name="M:DG.Tweening.ShortcutExtensions.DOLocalMoveX(UnityEngine.Transform,System.Single,System.Single,System.Boolean)">
  1449. <summary>Tweens a Transform's X localPosition to the given value.
  1450. Also stores the transform as the tween's target so it can be used for filtered operations</summary>
  1451. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1452. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  1453. </member>
  1454. <member name="M:DG.Tweening.ShortcutExtensions.DOLocalMoveY(UnityEngine.Transform,System.Single,System.Single,System.Boolean)">
  1455. <summary>Tweens a Transform's Y localPosition to the given value.
  1456. Also stores the transform as the tween's target so it can be used for filtered operations</summary>
  1457. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1458. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  1459. </member>
  1460. <member name="M:DG.Tweening.ShortcutExtensions.DOLocalMoveZ(UnityEngine.Transform,System.Single,System.Single,System.Boolean)">
  1461. <summary>Tweens a Transform's Z localPosition to the given value.
  1462. Also stores the transform as the tween's target so it can be used for filtered operations</summary>
  1463. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1464. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  1465. </member>
  1466. <member name="M:DG.Tweening.ShortcutExtensions.DORotate(UnityEngine.Transform,UnityEngine.Vector3,System.Single,DG.Tweening.RotateMode)">
  1467. <summary>Tweens a Transform's rotation to the given value.
  1468. Also stores the transform as the tween's target so it can be used for filtered operations</summary>
  1469. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1470. <param name="mode">Rotation mode</param>
  1471. </member>
  1472. <member name="M:DG.Tweening.ShortcutExtensions.DORotateQuaternion(UnityEngine.Transform,UnityEngine.Quaternion,System.Single)">
  1473. <summary>Tweens a Transform's rotation to the given value using pure quaternion values.
  1474. Also stores the transform as the tween's target so it can be used for filtered operations.
  1475. <para>PLEASE NOTE: DORotate, which takes Vector3 values, is the preferred rotation method.
  1476. This method was implemented for very special cases, and doesn't support LoopType.Incremental loops
  1477. (neither for itself nor if placed inside a LoopType.Incremental Sequence)</para>
  1478. </summary>
  1479. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1480. </member>
  1481. <member name="M:DG.Tweening.ShortcutExtensions.DOLocalRotate(UnityEngine.Transform,UnityEngine.Vector3,System.Single,DG.Tweening.RotateMode)">
  1482. <summary>Tweens a Transform's localRotation to the given value.
  1483. Also stores the transform as the tween's target so it can be used for filtered operations</summary>
  1484. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1485. <param name="mode">Rotation mode</param>
  1486. </member>
  1487. <member name="M:DG.Tweening.ShortcutExtensions.DOLocalRotateQuaternion(UnityEngine.Transform,UnityEngine.Quaternion,System.Single)">
  1488. <summary>Tweens a Transform's rotation to the given value using pure quaternion values.
  1489. Also stores the transform as the tween's target so it can be used for filtered operations.
  1490. <para>PLEASE NOTE: DOLocalRotate, which takes Vector3 values, is the preferred rotation method.
  1491. This method was implemented for very special cases, and doesn't support LoopType.Incremental loops
  1492. (neither for itself nor if placed inside a LoopType.Incremental Sequence)</para>
  1493. </summary>
  1494. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1495. </member>
  1496. <member name="M:DG.Tweening.ShortcutExtensions.DOScale(UnityEngine.Transform,UnityEngine.Vector3,System.Single)">
  1497. <summary>Tweens a Transform's localScale to the given value.
  1498. Also stores the transform as the tween's target so it can be used for filtered operations</summary>
  1499. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1500. </member>
  1501. <member name="M:DG.Tweening.ShortcutExtensions.DOScale(UnityEngine.Transform,System.Single,System.Single)">
  1502. <summary>Tweens a Transform's localScale uniformly to the given value.
  1503. Also stores the transform as the tween's target so it can be used for filtered operations</summary>
  1504. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1505. </member>
  1506. <member name="M:DG.Tweening.ShortcutExtensions.DOScaleX(UnityEngine.Transform,System.Single,System.Single)">
  1507. <summary>Tweens a Transform's X localScale to the given value.
  1508. Also stores the transform as the tween's target so it can be used for filtered operations</summary>
  1509. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1510. </member>
  1511. <member name="M:DG.Tweening.ShortcutExtensions.DOScaleY(UnityEngine.Transform,System.Single,System.Single)">
  1512. <summary>Tweens a Transform's Y localScale to the given value.
  1513. Also stores the transform as the tween's target so it can be used for filtered operations</summary>
  1514. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1515. </member>
  1516. <member name="M:DG.Tweening.ShortcutExtensions.DOScaleZ(UnityEngine.Transform,System.Single,System.Single)">
  1517. <summary>Tweens a Transform's Z localScale to the given value.
  1518. Also stores the transform as the tween's target so it can be used for filtered operations</summary>
  1519. <param name="endValue">The end value to reach</param><param name="duration">The duration of the tween</param>
  1520. </member>
  1521. <member name="M:DG.Tweening.ShortcutExtensions.DOLookAt(UnityEngine.Transform,UnityEngine.Vector3,System.Single,DG.Tweening.AxisConstraint,System.Nullable{UnityEngine.Vector3})">
  1522. <summary>Tweens a Transform's rotation so that it will look towards the given position.
  1523. Also stores the transform as the tween's target so it can be used for filtered operations</summary>
  1524. <param name="towards">The position to look at</param><param name="duration">The duration of the tween</param>
  1525. <param name="axisConstraint">Eventual axis constraint for the rotation</param>
  1526. <param name="up">The vector that defines in which direction up is (default: Vector3.up)</param>
  1527. </member>
  1528. <member name="M:DG.Tweening.ShortcutExtensions.DOPunchPosition(UnityEngine.Transform,UnityEngine.Vector3,System.Single,System.Int32,System.Single,System.Boolean)">
  1529. <summary>Punches a Transform's localPosition towards the given direction and then back to the starting one
  1530. as if it was connected to the starting position via an elastic.</summary>
  1531. <param name="punch">The direction and strength of the punch (added to the Transform's current position)</param>
  1532. <param name="duration">The duration of the tween</param>
  1533. <param name="vibrato">Indicates how much will the punch vibrate</param>
  1534. <param name="elasticity">Represents how much (0 to 1) the vector will go beyond the starting position when bouncing backwards.
  1535. 1 creates a full oscillation between the punch direction and the opposite direction,
  1536. while 0 oscillates only between the punch and the start position</param>
  1537. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  1538. </member>
  1539. <member name="M:DG.Tweening.ShortcutExtensions.DOPunchScale(UnityEngine.Transform,UnityEngine.Vector3,System.Single,System.Int32,System.Single)">
  1540. <summary>Punches a Transform's localScale towards the given size and then back to the starting one
  1541. as if it was connected to the starting scale via an elastic.</summary>
  1542. <param name="punch">The punch strength (added to the Transform's current scale)</param>
  1543. <param name="duration">The duration of the tween</param>
  1544. <param name="vibrato">Indicates how much will the punch vibrate</param>
  1545. <param name="elasticity">Represents how much (0 to 1) the vector will go beyond the starting size when bouncing backwards.
  1546. 1 creates a full oscillation between the punch scale and the opposite scale,
  1547. while 0 oscillates only between the punch scale and the start scale</param>
  1548. </member>
  1549. <member name="M:DG.Tweening.ShortcutExtensions.DOPunchRotation(UnityEngine.Transform,UnityEngine.Vector3,System.Single,System.Int32,System.Single)">
  1550. <summary>Punches a Transform's localRotation towards the given size and then back to the starting one
  1551. as if it was connected to the starting rotation via an elastic.</summary>
  1552. <param name="punch">The punch strength (added to the Transform's current rotation)</param>
  1553. <param name="duration">The duration of the tween</param>
  1554. <param name="vibrato">Indicates how much will the punch vibrate</param>
  1555. <param name="elasticity">Represents how much (0 to 1) the vector will go beyond the starting rotation when bouncing backwards.
  1556. 1 creates a full oscillation between the punch rotation and the opposite rotation,
  1557. while 0 oscillates only between the punch and the start rotation</param>
  1558. </member>
  1559. <member name="M:DG.Tweening.ShortcutExtensions.DOShakePosition(UnityEngine.Transform,System.Single,System.Single,System.Int32,System.Single,System.Boolean,System.Boolean)">
  1560. <summary>Shakes a Transform's localPosition with the given values.</summary>
  1561. <param name="duration">The duration of the tween</param>
  1562. <param name="strength">The shake strength</param>
  1563. <param name="vibrato">Indicates how much will the shake vibrate</param>
  1564. <param name="randomness">Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware).
  1565. Setting it to 0 will shake along a single direction.</param>
  1566. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  1567. <param name="fadeOut">If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not</param>
  1568. </member>
  1569. <member name="M:DG.Tweening.ShortcutExtensions.DOShakePosition(UnityEngine.Transform,System.Single,UnityEngine.Vector3,System.Int32,System.Single,System.Boolean,System.Boolean)">
  1570. <summary>Shakes a Transform's localPosition with the given values.</summary>
  1571. <param name="duration">The duration of the tween</param>
  1572. <param name="strength">The shake strength on each axis</param>
  1573. <param name="vibrato">Indicates how much will the shake vibrate</param>
  1574. <param name="randomness">Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware).
  1575. Setting it to 0 will shake along a single direction.</param>
  1576. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  1577. <param name="fadeOut">If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not</param>
  1578. </member>
  1579. <member name="M:DG.Tweening.ShortcutExtensions.DOShakeRotation(UnityEngine.Transform,System.Single,System.Single,System.Int32,System.Single,System.Boolean)">
  1580. <summary>Shakes a Transform's localRotation.</summary>
  1581. <param name="duration">The duration of the tween</param>
  1582. <param name="strength">The shake strength</param>
  1583. <param name="vibrato">Indicates how much will the shake vibrate</param>
  1584. <param name="randomness">Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware).
  1585. Setting it to 0 will shake along a single direction.</param>
  1586. <param name="fadeOut">If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not</param>
  1587. </member>
  1588. <member name="M:DG.Tweening.ShortcutExtensions.DOShakeRotation(UnityEngine.Transform,System.Single,UnityEngine.Vector3,System.Int32,System.Single,System.Boolean)">
  1589. <summary>Shakes a Transform's localRotation.</summary>
  1590. <param name="duration">The duration of the tween</param>
  1591. <param name="strength">The shake strength on each axis</param>
  1592. <param name="vibrato">Indicates how much will the shake vibrate</param>
  1593. <param name="randomness">Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware).
  1594. Setting it to 0 will shake along a single direction.</param>
  1595. <param name="fadeOut">If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not</param>
  1596. </member>
  1597. <member name="M:DG.Tweening.ShortcutExtensions.DOShakeScale(UnityEngine.Transform,System.Single,System.Single,System.Int32,System.Single,System.Boolean)">
  1598. <summary>Shakes a Transform's localScale.</summary>
  1599. <param name="duration">The duration of the tween</param>
  1600. <param name="strength">The shake strength</param>
  1601. <param name="vibrato">Indicates how much will the shake vibrate</param>
  1602. <param name="randomness">Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware).
  1603. Setting it to 0 will shake along a single direction.</param>
  1604. <param name="fadeOut">If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not</param>
  1605. </member>
  1606. <member name="M:DG.Tweening.ShortcutExtensions.DOShakeScale(UnityEngine.Transform,System.Single,UnityEngine.Vector3,System.Int32,System.Single,System.Boolean)">
  1607. <summary>Shakes a Transform's localScale.</summary>
  1608. <param name="duration">The duration of the tween</param>
  1609. <param name="strength">The shake strength on each axis</param>
  1610. <param name="vibrato">Indicates how much will the shake vibrate</param>
  1611. <param name="randomness">Indicates how much the shake will be random (0 to 180 - values higher than 90 kind of suck, so beware).
  1612. Setting it to 0 will shake along a single direction.</param>
  1613. <param name="fadeOut">If TRUE the shake will automatically fadeOut smoothly within the tween's duration, otherwise it will not</param>
  1614. </member>
  1615. <member name="M:DG.Tweening.ShortcutExtensions.DOJump(UnityEngine.Transform,UnityEngine.Vector3,System.Single,System.Int32,System.Single,System.Boolean)">
  1616. <summary>Tweens a Transform's position to the given value, while also applying a jump effect along the Y axis.
  1617. Returns a Sequence instead of a Tweener.
  1618. Also stores the transform as the tween's target so it can be used for filtered operations</summary>
  1619. <param name="endValue">The end value to reach</param>
  1620. <param name="jumpPower">Power of the jump (the max height of the jump is represented by this plus the final Y offset)</param>
  1621. <param name="numJumps">Total number of jumps</param>
  1622. <param name="duration">The duration of the tween</param>
  1623. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  1624. </member>
  1625. <member name="M:DG.Tweening.ShortcutExtensions.DOLocalJump(UnityEngine.Transform,UnityEngine.Vector3,System.Single,System.Int32,System.Single,System.Boolean)">
  1626. <summary>Tweens a Transform's localPosition to the given value, while also applying a jump effect along the Y axis.
  1627. Returns a Sequence instead of a Tweener.
  1628. Also stores the transform as the tween's target so it can be used for filtered operations</summary>
  1629. <param name="endValue">The end value to reach</param>
  1630. <param name="jumpPower">Power of the jump (the max height of the jump is represented by this plus the final Y offset)</param>
  1631. <param name="numJumps">Total number of jumps</param>
  1632. <param name="duration">The duration of the tween</param>
  1633. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  1634. </member>
  1635. <member name="M:DG.Tweening.ShortcutExtensions.DOPath(UnityEngine.Transform,UnityEngine.Vector3[],System.Single,DG.Tweening.PathType,DG.Tweening.PathMode,System.Int32,System.Nullable{UnityEngine.Color})">
  1636. <summary>Tweens a Transform's position through the given path waypoints, using the chosen path algorithm.
  1637. Also stores the transform as the tween's target so it can be used for filtered operations</summary>
  1638. <param name="path">The waypoints to go through</param>
  1639. <param name="duration">The duration of the tween</param>
  1640. <param name="pathType">The type of path: Linear (straight path) or CatmullRom (curved CatmullRom path)</param>
  1641. <param name="pathMode">The path mode: 3D, side-scroller 2D, top-down 2D</param>
  1642. <param name="resolution">The resolution of the path (useless in case of Linear paths): higher resolutions make for more detailed curved paths but are more expensive.
  1643. Defaults to 10, but a value of 5 is usually enough if you don't have dramatic long curves between waypoints</param>
  1644. <param name="gizmoColor">The color of the path (shown when gizmos are active in the Play panel and the tween is running)</param>
  1645. </member>
  1646. <member name="M:DG.Tweening.ShortcutExtensions.DOLocalPath(UnityEngine.Transform,UnityEngine.Vector3[],System.Single,DG.Tweening.PathType,DG.Tweening.PathMode,System.Int32,System.Nullable{UnityEngine.Color})">
  1647. <summary>Tweens a Transform's localPosition through the given path waypoints, using the chosen path algorithm.
  1648. Also stores the transform as the tween's target so it can be used for filtered operations</summary>
  1649. <param name="path">The waypoint to go through</param>
  1650. <param name="duration">The duration of the tween</param>
  1651. <param name="pathType">The type of path: Linear (straight path) or CatmullRom (curved CatmullRom path)</param>
  1652. <param name="pathMode">The path mode: 3D, side-scroller 2D, top-down 2D</param>
  1653. <param name="resolution">The resolution of the path: higher resolutions make for more detailed curved paths but are more expensive.
  1654. Defaults to 10, but a value of 5 is usually enough if you don't have dramatic long curves between waypoints</param>
  1655. <param name="gizmoColor">The color of the path (shown when gizmos are active in the Play panel and the tween is running)</param>
  1656. </member>
  1657. <member name="M:DG.Tweening.ShortcutExtensions.DOBlendableColor(UnityEngine.Light,UnityEngine.Color,System.Single)">
  1658. <summary>Tweens a Light's color to the given value,
  1659. in a way that allows other DOBlendableColor tweens to work together on the same target,
  1660. instead than fight each other as multiple DOColor would do.
  1661. Also stores the Light as the tween's target so it can be used for filtered operations</summary>
  1662. <param name="endValue">The value to tween to</param><param name="duration">The duration of the tween</param>
  1663. </member>
  1664. <member name="M:DG.Tweening.ShortcutExtensions.DOBlendableColor(UnityEngine.Material,UnityEngine.Color,System.Single)">
  1665. <summary>Tweens a Material's color to the given value,
  1666. in a way that allows other DOBlendableColor tweens to work together on the same target,
  1667. instead than fight each other as multiple DOColor would do.
  1668. Also stores the Material as the tween's target so it can be used for filtered operations</summary>
  1669. <param name="endValue">The value to tween to</param><param name="duration">The duration of the tween</param>
  1670. </member>
  1671. <member name="M:DG.Tweening.ShortcutExtensions.DOBlendableColor(UnityEngine.Material,UnityEngine.Color,System.String,System.Single)">
  1672. <summary>Tweens a Material's named color property to the given value,
  1673. in a way that allows other DOBlendableColor tweens to work together on the same target,
  1674. instead than fight each other as multiple DOColor would do.
  1675. Also stores the Material as the tween's target so it can be used for filtered operations</summary>
  1676. <param name="endValue">The value to tween to</param>
  1677. <param name="property">The name of the material property to tween (like _Tint or _SpecColor)</param>
  1678. <param name="duration">The duration of the tween</param>
  1679. </member>
  1680. <member name="M:DG.Tweening.ShortcutExtensions.DOBlendableMoveBy(UnityEngine.Transform,UnityEngine.Vector3,System.Single,System.Boolean)">
  1681. <summary>Tweens a Transform's position BY the given value (as if you chained a <code>SetRelative</code>),
  1682. in a way that allows other DOBlendableMove tweens to work together on the same target,
  1683. instead than fight each other as multiple DOMove would do.
  1684. Also stores the transform as the tween's target so it can be used for filtered operations</summary>
  1685. <param name="byValue">The value to tween by</param><param name="duration">The duration of the tween</param>
  1686. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  1687. </member>
  1688. <member name="M:DG.Tweening.ShortcutExtensions.DOBlendableLocalMoveBy(UnityEngine.Transform,UnityEngine.Vector3,System.Single,System.Boolean)">
  1689. <summary>Tweens a Transform's localPosition BY the given value (as if you chained a <code>SetRelative</code>),
  1690. in a way that allows other DOBlendableMove tweens to work together on the same target,
  1691. instead than fight each other as multiple DOMove would do.
  1692. Also stores the transform as the tween's target so it can be used for filtered operations</summary>
  1693. <param name="byValue">The value to tween by</param><param name="duration">The duration of the tween</param>
  1694. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  1695. </member>
  1696. <member name="M:DG.Tweening.ShortcutExtensions.DOBlendableRotateBy(UnityEngine.Transform,UnityEngine.Vector3,System.Single,DG.Tweening.RotateMode)">
  1697. <summary>EXPERIMENTAL METHOD - Tweens a Transform's rotation BY the given value (as if you chained a <code>SetRelative</code>),
  1698. in a way that allows other DOBlendableRotate tweens to work together on the same target,
  1699. instead than fight each other as multiple DORotate would do.
  1700. Also stores the transform as the tween's target so it can be used for filtered operations</summary>
  1701. <param name="byValue">The value to tween by</param><param name="duration">The duration of the tween</param>
  1702. <param name="mode">Rotation mode</param>
  1703. </member>
  1704. <member name="M:DG.Tweening.ShortcutExtensions.DOBlendableLocalRotateBy(UnityEngine.Transform,UnityEngine.Vector3,System.Single,DG.Tweening.RotateMode)">
  1705. <summary>EXPERIMENTAL METHOD - Tweens a Transform's lcoalRotation BY the given value (as if you chained a <code>SetRelative</code>),
  1706. in a way that allows other DOBlendableRotate tweens to work together on the same target,
  1707. instead than fight each other as multiple DORotate would do.
  1708. Also stores the transform as the tween's target so it can be used for filtered operations</summary>
  1709. <param name="byValue">The value to tween by</param><param name="duration">The duration of the tween</param>
  1710. <param name="mode">Rotation mode</param>
  1711. </member>
  1712. <member name="M:DG.Tweening.ShortcutExtensions.DOBlendableScaleBy(UnityEngine.Transform,UnityEngine.Vector3,System.Single)">
  1713. <summary>Tweens a Transform's localScale BY the given value (as if you chained a <code>SetRelative</code>),
  1714. in a way that allows other DOBlendableScale tweens to work together on the same target,
  1715. instead than fight each other as multiple DOScale would do.
  1716. Also stores the transform as the tween's target so it can be used for filtered operations</summary>
  1717. <param name="byValue">The value to tween by</param><param name="duration">The duration of the tween</param>
  1718. </member>
  1719. <member name="M:DG.Tweening.ShortcutExtensions.DOComplete(UnityEngine.Component,System.Boolean)">
  1720. <summary>
  1721. Completes all tweens that have this target as a reference
  1722. (meaning tweens that were started from this target, or that had this target added as an Id)
  1723. and returns the total number of tweens completed
  1724. (meaning the tweens that don't have infinite loops and were not already complete)
  1725. </summary>
  1726. <param name="withCallbacks">For Sequences only: if TRUE also internal Sequence callbacks will be fired,
  1727. otherwise they will be ignored</param>
  1728. </member>
  1729. <member name="M:DG.Tweening.ShortcutExtensions.DOComplete(UnityEngine.Material,System.Boolean)">
  1730. <summary>
  1731. Completes all tweens that have this target as a reference
  1732. (meaning tweens that were started from this target, or that had this target added as an Id)
  1733. and returns the total number of tweens completed
  1734. (meaning the tweens that don't have infinite loops and were not already complete)
  1735. </summary>
  1736. <param name="withCallbacks">For Sequences only: if TRUE also internal Sequence callbacks will be fired,
  1737. otherwise they will be ignored</param>
  1738. </member>
  1739. <member name="M:DG.Tweening.ShortcutExtensions.DOKill(UnityEngine.Component,System.Boolean)">
  1740. <summary>
  1741. Kills all tweens that have this target as a reference
  1742. (meaning tweens that were started from this target, or that had this target added as an Id)
  1743. and returns the total number of tweens killed.
  1744. </summary>
  1745. <param name="complete">If TRUE completes the tween before killing it</param>
  1746. </member>
  1747. <member name="M:DG.Tweening.ShortcutExtensions.DOKill(UnityEngine.Material,System.Boolean)">
  1748. <summary>
  1749. Kills all tweens that have this target as a reference
  1750. (meaning tweens that were started from this target, or that had this target added as an Id)
  1751. and returns the total number of tweens killed.
  1752. </summary>
  1753. <param name="complete">If TRUE completes the tween before killing it</param>
  1754. </member>
  1755. <member name="M:DG.Tweening.ShortcutExtensions.DOFlip(UnityEngine.Component)">
  1756. <summary>
  1757. Flips the direction (backwards if it was going forward or viceversa) of all tweens that have this target as a reference
  1758. (meaning tweens that were started from this target, or that had this target added as an Id)
  1759. and returns the total number of tweens flipped.
  1760. </summary>
  1761. </member>
  1762. <member name="M:DG.Tweening.ShortcutExtensions.DOFlip(UnityEngine.Material)">
  1763. <summary>
  1764. Flips the direction (backwards if it was going forward or viceversa) of all tweens that have this target as a reference
  1765. (meaning tweens that were started from this target, or that had this target added as an Id)
  1766. and returns the total number of tweens flipped.
  1767. </summary>
  1768. </member>
  1769. <member name="M:DG.Tweening.ShortcutExtensions.DOGoto(UnityEngine.Component,System.Single,System.Boolean)">
  1770. <summary>
  1771. Sends to the given position all tweens that have this target as a reference
  1772. (meaning tweens that were started from this target, or that had this target added as an Id)
  1773. and returns the total number of tweens involved.
  1774. </summary>
  1775. <param name="to">Time position to reach
  1776. (if higher than the whole tween duration the tween will simply reach its end)</param>
  1777. <param name="andPlay">If TRUE will play the tween after reaching the given position, otherwise it will pause it</param>
  1778. </member>
  1779. <member name="M:DG.Tweening.ShortcutExtensions.DOGoto(UnityEngine.Material,System.Single,System.Boolean)">
  1780. <summary>
  1781. Sends to the given position all tweens that have this target as a reference
  1782. (meaning tweens that were started from this target, or that had this target added as an Id)
  1783. and returns the total number of tweens involved.
  1784. </summary>
  1785. <param name="to">Time position to reach
  1786. (if higher than the whole tween duration the tween will simply reach its end)</param>
  1787. <param name="andPlay">If TRUE will play the tween after reaching the given position, otherwise it will pause it</param>
  1788. </member>
  1789. <member name="M:DG.Tweening.ShortcutExtensions.DOPause(UnityEngine.Component)">
  1790. <summary>
  1791. Pauses all tweens that have this target as a reference
  1792. (meaning tweens that were started from this target, or that had this target added as an Id)
  1793. and returns the total number of tweens paused.
  1794. </summary>
  1795. </member>
  1796. <member name="M:DG.Tweening.ShortcutExtensions.DOPause(UnityEngine.Material)">
  1797. <summary>
  1798. Pauses all tweens that have this target as a reference
  1799. (meaning tweens that were started from this target, or that had this target added as an Id)
  1800. and returns the total number of tweens paused.
  1801. </summary>
  1802. </member>
  1803. <member name="M:DG.Tweening.ShortcutExtensions.DOPlay(UnityEngine.Component)">
  1804. <summary>
  1805. Plays all tweens that have this target as a reference
  1806. (meaning tweens that were started from this target, or that had this target added as an Id)
  1807. and returns the total number of tweens played.
  1808. </summary>
  1809. </member>
  1810. <member name="M:DG.Tweening.ShortcutExtensions.DOPlay(UnityEngine.Material)">
  1811. <summary>
  1812. Plays all tweens that have this target as a reference
  1813. (meaning tweens that were started from this target, or that had this target added as an Id)
  1814. and returns the total number of tweens played.
  1815. </summary>
  1816. </member>
  1817. <member name="M:DG.Tweening.ShortcutExtensions.DOPlayBackwards(UnityEngine.Component)">
  1818. <summary>
  1819. Plays backwards all tweens that have this target as a reference
  1820. (meaning tweens that were started from this target, or that had this target added as an Id)
  1821. and returns the total number of tweens played.
  1822. </summary>
  1823. </member>
  1824. <member name="M:DG.Tweening.ShortcutExtensions.DOPlayBackwards(UnityEngine.Material)">
  1825. <summary>
  1826. Plays backwards all tweens that have this target as a reference
  1827. (meaning tweens that were started from this target, or that had this target added as an Id)
  1828. and returns the total number of tweens played.
  1829. </summary>
  1830. </member>
  1831. <member name="M:DG.Tweening.ShortcutExtensions.DOPlayForward(UnityEngine.Component)">
  1832. <summary>
  1833. Plays forward all tweens that have this target as a reference
  1834. (meaning tweens that were started from this target, or that had this target added as an Id)
  1835. and returns the total number of tweens played.
  1836. </summary>
  1837. </member>
  1838. <member name="M:DG.Tweening.ShortcutExtensions.DOPlayForward(UnityEngine.Material)">
  1839. <summary>
  1840. Plays forward all tweens that have this target as a reference
  1841. (meaning tweens that were started from this target, or that had this target added as an Id)
  1842. and returns the total number of tweens played.
  1843. </summary>
  1844. </member>
  1845. <member name="M:DG.Tweening.ShortcutExtensions.DORestart(UnityEngine.Component,System.Boolean)">
  1846. <summary>
  1847. Restarts all tweens that have this target as a reference
  1848. (meaning tweens that were started from this target, or that had this target added as an Id)
  1849. and returns the total number of tweens restarted.
  1850. </summary>
  1851. </member>
  1852. <member name="M:DG.Tweening.ShortcutExtensions.DORestart(UnityEngine.Material,System.Boolean)">
  1853. <summary>
  1854. Restarts all tweens that have this target as a reference
  1855. (meaning tweens that were started from this target, or that had this target added as an Id)
  1856. and returns the total number of tweens restarted.
  1857. </summary>
  1858. </member>
  1859. <member name="M:DG.Tweening.ShortcutExtensions.DORewind(UnityEngine.Component,System.Boolean)">
  1860. <summary>
  1861. Rewinds all tweens that have this target as a reference
  1862. (meaning tweens that were started from this target, or that had this target added as an Id)
  1863. and returns the total number of tweens rewinded.
  1864. </summary>
  1865. </member>
  1866. <member name="M:DG.Tweening.ShortcutExtensions.DORewind(UnityEngine.Material,System.Boolean)">
  1867. <summary>
  1868. Rewinds all tweens that have this target as a reference
  1869. (meaning tweens that were started from this target, or that had this target added as an Id)
  1870. and returns the total number of tweens rewinded.
  1871. </summary>
  1872. </member>
  1873. <member name="M:DG.Tweening.ShortcutExtensions.DOSmoothRewind(UnityEngine.Component)">
  1874. <summary>
  1875. Smoothly rewinds all tweens that have this target as a reference
  1876. (meaning tweens that were started from this target, or that had this target added as an Id)
  1877. and returns the total number of tweens rewinded.
  1878. </summary>
  1879. </member>
  1880. <member name="M:DG.Tweening.ShortcutExtensions.DOSmoothRewind(UnityEngine.Material)">
  1881. <summary>
  1882. Smoothly rewinds all tweens that have this target as a reference
  1883. (meaning tweens that were started from this target, or that had this target added as an Id)
  1884. and returns the total number of tweens rewinded.
  1885. </summary>
  1886. </member>
  1887. <member name="M:DG.Tweening.ShortcutExtensions.DOTogglePause(UnityEngine.Component)">
  1888. <summary>
  1889. Toggles the paused state (plays if it was paused, pauses if it was playing) of all tweens that have this target as a reference
  1890. (meaning tweens that were started from this target, or that had this target added as an Id)
  1891. and returns the total number of tweens involved.
  1892. </summary>
  1893. </member>
  1894. <member name="M:DG.Tweening.ShortcutExtensions.DOTogglePause(UnityEngine.Material)">
  1895. <summary>
  1896. Toggles the paused state (plays if it was paused, pauses if it was playing) of all tweens that have this target as a reference
  1897. (meaning tweens that were started from this target, or that had this target added as an Id)
  1898. and returns the total number of tweens involved.
  1899. </summary>
  1900. </member>
  1901. <member name="T:DG.Tweening.TweenParams">
  1902. <summary>
  1903. This class serves only as a utility class to store tween settings to apply on multiple tweens.
  1904. It is in no way needed otherwise, since you can directly apply tween settings to a tween via chaining
  1905. </summary>
  1906. </member>
  1907. <member name="F:DG.Tweening.TweenParams.Params">
  1908. <summary>A variable you can eventually Clear and reuse when needed,
  1909. to avoid instantiating TweenParams objects</summary>
  1910. </member>
  1911. <member name="M:DG.Tweening.TweenParams.#ctor">
  1912. <summary>Creates a new TweenParams object, which you can use to store tween settings
  1913. to pass to multiple tweens via <code>myTween.SetAs(myTweenParms)</code></summary>
  1914. </member>
  1915. <member name="M:DG.Tweening.TweenParams.Clear">
  1916. <summary>Clears and resets this TweenParams instance using default values,
  1917. so it can be reused without instantiating another one</summary>
  1918. </member>
  1919. <member name="M:DG.Tweening.TweenParams.SetAutoKill(System.Boolean)">
  1920. <summary>Sets the autoKill behaviour of the tween.
  1921. Has no effect if the tween has already started</summary>
  1922. <param name="autoKillOnCompletion">If TRUE the tween will be automatically killed when complete</param>
  1923. </member>
  1924. <member name="M:DG.Tweening.TweenParams.SetId(System.Object)">
  1925. <summary>Sets an ID for the tween, which can then be used as a filter with DOTween's static methods.</summary>
  1926. <param name="id">The ID to assign to this tween. Can be an int, a string, an object or anything else.</param>
  1927. </member>
  1928. <member name="M:DG.Tweening.TweenParams.SetTarget(System.Object)">
  1929. <summary>Sets the target for the tween, which can then be used as a filter with DOTween's static methods.
  1930. <para>IMPORTANT: use it with caution. If you just want to set an ID for the tween use <code>SetId</code> instead.</para>
  1931. When using shorcuts the shortcut target is already assigned as the tween's target,
  1932. so using this method will overwrite it and prevent shortcut-operations like myTarget.DOPause from working correctly.</summary>
  1933. <param name="target">The target to assign to this tween. Can be an int, a string, an object or anything else.</param>
  1934. </member>
  1935. <member name="M:DG.Tweening.TweenParams.SetLoops(System.Int32,System.Nullable{DG.Tweening.LoopType})">
  1936. <summary>Sets the looping options for the tween.
  1937. Has no effect if the tween has already started</summary>
  1938. <param name="loops">Number of cycles to play (-1 for infinite - will be converted to 1 in case the tween is nested in a Sequence)</param>
  1939. <param name="loopType">Loop behaviour type (default: LoopType.Restart)</param>
  1940. </member>
  1941. <member name="M:DG.Tweening.TweenParams.SetEase(DG.Tweening.Ease,System.Nullable{System.Single},System.Nullable{System.Single})">
  1942. <summary>Sets the ease of the tween.
  1943. <para>If applied to Sequences eases the whole sequence animation</para></summary>
  1944. <param name="overshootOrAmplitude">Eventual overshoot or amplitude to use with Back or Elastic easeType (default is 1.70158)</param>
  1945. <param name="period">Eventual period to use with Elastic easeType (default is 0)</param>
  1946. </member>
  1947. <member name="M:DG.Tweening.TweenParams.SetEase(UnityEngine.AnimationCurve)">
  1948. <summary>Sets the ease of the tween using an AnimationCurve.
  1949. <para>If applied to Sequences eases the whole sequence animation</para></summary>
  1950. </member>
  1951. <member name="M:DG.Tweening.TweenParams.SetEase(DG.Tweening.EaseFunction)">
  1952. <summary>Sets the ease of the tween using a custom ease function.
  1953. <para>If applied to Sequences eases the whole sequence animation</para></summary>
  1954. </member>
  1955. <member name="M:DG.Tweening.TweenParams.SetRecyclable(System.Boolean)">
  1956. <summary>Sets the recycling behaviour for the tween.</summary>
  1957. <param name="recyclable">If TRUE the tween will be recycled after being killed, otherwise it will be destroyed.</param>
  1958. </member>
  1959. <member name="M:DG.Tweening.TweenParams.SetUpdate(System.Boolean)">
  1960. <summary>Sets the update type to the one defined in DOTween.defaultUpdateType (UpdateType.Normal unless changed)
  1961. and lets you choose if it should be independent from Unity's Time.timeScale</summary>
  1962. <param name="isIndependentUpdate">If TRUE the tween will ignore Unity's Time.timeScale</param>
  1963. </member>
  1964. <member name="M:DG.Tweening.TweenParams.SetUpdate(DG.Tweening.UpdateType,System.Boolean)">
  1965. <summary>Sets the type of update (default or independent) for the tween</summary>
  1966. <param name="updateType">The type of update (default: UpdateType.Normal)</param>
  1967. <param name="isIndependentUpdate">If TRUE the tween will ignore Unity's Time.timeScale</param>
  1968. </member>
  1969. <member name="M:DG.Tweening.TweenParams.OnStart(DG.Tweening.TweenCallback)">
  1970. <summary>Sets the onStart callback for the tween.
  1971. Called the first time the tween is set in a playing state, after any eventual delay</summary>
  1972. </member>
  1973. <member name="M:DG.Tweening.TweenParams.OnPlay(DG.Tweening.TweenCallback)">
  1974. <summary>Sets the onPlay callback for the tween.
  1975. Called when the tween is set in a playing state, after any eventual delay.
  1976. Also called each time the tween resumes playing from a paused state</summary>
  1977. </member>
  1978. <member name="M:DG.Tweening.TweenParams.OnRewind(DG.Tweening.TweenCallback)">
  1979. <summary>Sets the onRewind callback for the tween.
  1980. Called when the tween is rewinded,
  1981. either by calling <code>Rewind</code> or by reaching the start position while playing backwards.
  1982. Rewinding a tween that is already rewinded will not fire this callback</summary>
  1983. </member>
  1984. <member name="M:DG.Tweening.TweenParams.OnUpdate(DG.Tweening.TweenCallback)">
  1985. <summary>Sets the onUpdate callback for the tween.
  1986. Called each time the tween updates</summary>
  1987. </member>
  1988. <member name="M:DG.Tweening.TweenParams.OnStepComplete(DG.Tweening.TweenCallback)">
  1989. <summary>Sets the onStepComplete callback for the tween.
  1990. Called the moment the tween completes one loop cycle, even when going backwards</summary>
  1991. </member>
  1992. <member name="M:DG.Tweening.TweenParams.OnComplete(DG.Tweening.TweenCallback)">
  1993. <summary>Sets the onComplete callback for the tween.
  1994. Called the moment the tween reaches its final forward position, loops included</summary>
  1995. </member>
  1996. <member name="M:DG.Tweening.TweenParams.OnKill(DG.Tweening.TweenCallback)">
  1997. <summary>Sets the onKill callback for the tween.
  1998. Called the moment the tween is killed</summary>
  1999. </member>
  2000. <member name="M:DG.Tweening.TweenParams.OnWaypointChange(DG.Tweening.TweenCallback{System.Int32})">
  2001. <summary>Sets the onWaypointChange callback for the tween.
  2002. Called when a path tween reaches a new waypoint</summary>
  2003. </member>
  2004. <member name="M:DG.Tweening.TweenParams.SetDelay(System.Single)">
  2005. <summary>Sets a delayed startup for the tween.
  2006. <para>Has no effect on Sequences or if the tween has already started</para></summary>
  2007. </member>
  2008. <member name="M:DG.Tweening.TweenParams.SetRelative(System.Boolean)">
  2009. <summary>If isRelative is TRUE sets the tween as relative
  2010. (the endValue will be calculated as <code>startValue + endValue</code> instead than being used directly).
  2011. <para>Has no effect on Sequences or if the tween has already started</para></summary>
  2012. </member>
  2013. <member name="M:DG.Tweening.TweenParams.SetSpeedBased(System.Boolean)">
  2014. <summary>If isSpeedBased is TRUE sets the tween as speed based
  2015. (the duration will represent the number of units the tween moves x second).
  2016. <para>Has no effect on Sequences, nested tweens, or if the tween has already started</para></summary>
  2017. </member>
  2018. <member name="T:DG.Tweening.TweenSettingsExtensions">
  2019. <summary>
  2020. Methods that extend Tween objects and allow to set their parameters
  2021. </summary>
  2022. </member>
  2023. <member name="M:DG.Tweening.TweenSettingsExtensions.SetAutoKill``1(``0)">
  2024. <summary>Sets the autoKill behaviour of the tween.
  2025. Has no effect if the tween has already started</summary>
  2026. </member>
  2027. <member name="M:DG.Tweening.TweenSettingsExtensions.SetAutoKill``1(``0,System.Boolean)">
  2028. <summary>Sets the autoKill behaviour of the tween.
  2029. Has no effect if the tween has already started</summary>
  2030. <param name="autoKillOnCompletion">If TRUE the tween will be automatically killed when complete</param>
  2031. </member>
  2032. <member name="M:DG.Tweening.TweenSettingsExtensions.SetId``1(``0,System.Object)">
  2033. <summary>Sets an ID for the tween, which can then be used as a filter with DOTween's static methods.</summary>
  2034. <param name="id">The ID to assign to this tween. Can be an int, a string, an object or anything else.</param>
  2035. </member>
  2036. <member name="M:DG.Tweening.TweenSettingsExtensions.SetTarget``1(``0,System.Object)">
  2037. <summary>Sets the target for the tween, which can then be used as a filter with DOTween's static methods.
  2038. <para>IMPORTANT: use it with caution. If you just want to set an ID for the tween use <code>SetId</code> instead.</para>
  2039. When using shorcuts the shortcut target is already assigned as the tween's target,
  2040. so using this method will overwrite it and prevent shortcut-operations like myTarget.DOPause from working correctly.</summary>
  2041. <param name="target">The target to assign to this tween. Can be an int, a string, an object or anything else.</param>
  2042. </member>
  2043. <member name="M:DG.Tweening.TweenSettingsExtensions.SetLoops``1(``0,System.Int32)">
  2044. <summary>Sets the looping options for the tween.
  2045. Has no effect if the tween has already started</summary>
  2046. <param name="loops">Number of cycles to play (-1 for infinite - will be converted to 1 in case the tween is nested in a Sequence)</param>
  2047. </member>
  2048. <member name="M:DG.Tweening.TweenSettingsExtensions.SetLoops``1(``0,System.Int32,DG.Tweening.LoopType)">
  2049. <summary>Sets the looping options for the tween.
  2050. Has no effect if the tween has already started</summary>
  2051. <param name="loops">Number of cycles to play (-1 for infinite - will be converted to 1 in case the tween is nested in a Sequence)</param>
  2052. <param name="loopType">Loop behaviour type (default: LoopType.Restart)</param>
  2053. </member>
  2054. <member name="M:DG.Tweening.TweenSettingsExtensions.SetEase``1(``0,DG.Tweening.Ease)">
  2055. <summary>Sets the ease of the tween.
  2056. <para>If applied to Sequences eases the whole sequence animation</para></summary>
  2057. </member>
  2058. <member name="M:DG.Tweening.TweenSettingsExtensions.SetEase``1(``0,DG.Tweening.Ease,System.Single)">
  2059. <summary>Sets the ease of the tween.
  2060. <para>If applied to Sequences eases the whole sequence animation</para></summary>
  2061. <param name="overshoot">
  2062. Eventual overshoot to use with Back or Flash ease (default is 1.70158 - 1 for Flash).
  2063. <para>In case of Flash ease it must be an intenger and sets the total number of flashes that will happen.
  2064. Using an even number will complete the tween on the starting value, while an odd one will complete it on the end value.</para>
  2065. </param>
  2066. </member>
  2067. <member name="M:DG.Tweening.TweenSettingsExtensions.SetEase``1(``0,DG.Tweening.Ease,System.Single,System.Single)">
  2068. <summary>Sets the ease of the tween.
  2069. <para>If applied to Sequences eases the whole sequence animation</para></summary>
  2070. <param name="amplitude">Eventual amplitude to use with Elastic easeType or overshoot to use with Flash easeType (default is 1.70158 - 1 for Flash).
  2071. <para>In case of Flash ease it must be an integer and sets the total number of flashes that will happen.
  2072. Using an even number will complete the tween on the starting value, while an odd one will complete it on the end value.</para>
  2073. </param>
  2074. <param name="period">Eventual period to use with Elastic or Flash easeType (default is 0).
  2075. <para>In case of Flash ease it indicates the power in time of the ease, and must be between -1 and 1.
  2076. 0 is balanced, 1 weakens the ease with time, -1 starts the ease weakened and gives it power towards the end.</para>
  2077. </param>
  2078. </member>
  2079. <member name="M:DG.Tweening.TweenSettingsExtensions.SetEase``1(``0,UnityEngine.AnimationCurve)">
  2080. <summary>Sets the ease of the tween using an AnimationCurve.
  2081. <para>If applied to Sequences eases the whole sequence animation</para></summary>
  2082. </member>
  2083. <member name="M:DG.Tweening.TweenSettingsExtensions.SetEase``1(``0,DG.Tweening.EaseFunction)">
  2084. <summary>Sets the ease of the tween using a custom ease function (which must return a value between 0 and 1).
  2085. <para>If applied to Sequences eases the whole sequence animation</para></summary>
  2086. </member>
  2087. <member name="M:DG.Tweening.TweenSettingsExtensions.SetRecyclable``1(``0)">
  2088. <summary>Allows the tween to be recycled after being killed.</summary>
  2089. </member>
  2090. <member name="M:DG.Tweening.TweenSettingsExtensions.SetRecyclable``1(``0,System.Boolean)">
  2091. <summary>Sets the recycling behaviour for the tween.</summary>
  2092. <param name="recyclable">If TRUE the tween will be recycled after being killed, otherwise it will be destroyed.</param>
  2093. </member>
  2094. <member name="M:DG.Tweening.TweenSettingsExtensions.SetUpdate``1(``0,System.Boolean)">
  2095. <summary>Sets the update type to UpdateType.Normal and lets you choose if it should be independent from Unity's Time.timeScale</summary>
  2096. <param name="isIndependentUpdate">If TRUE the tween will ignore Unity's Time.timeScale</param>
  2097. </member>
  2098. <member name="M:DG.Tweening.TweenSettingsExtensions.SetUpdate``1(``0,DG.Tweening.UpdateType)">
  2099. <summary>Sets the type of update for the tween</summary>
  2100. <param name="updateType">The type of update (defalt: UpdateType.Normal)</param>
  2101. </member>
  2102. <member name="M:DG.Tweening.TweenSettingsExtensions.SetUpdate``1(``0,DG.Tweening.UpdateType,System.Boolean)">
  2103. <summary>Sets the type of update for the tween and lets you choose if it should be independent from Unity's Time.timeScale</summary>
  2104. <param name="updateType">The type of update</param>
  2105. <param name="isIndependentUpdate">If TRUE the tween will ignore Unity's Time.timeScale</param>
  2106. </member>
  2107. <member name="M:DG.Tweening.TweenSettingsExtensions.OnStart``1(``0,DG.Tweening.TweenCallback)">
  2108. <summary>Sets the onStart callback for the tween.
  2109. Called the first time the tween is set in a playing state, after any eventual delay</summary>
  2110. </member>
  2111. <member name="M:DG.Tweening.TweenSettingsExtensions.OnPlay``1(``0,DG.Tweening.TweenCallback)">
  2112. <summary>Sets the onPlay callback for the tween.
  2113. Called when the tween is set in a playing state, after any eventual delay.
  2114. Also called each time the tween resumes playing from a paused state</summary>
  2115. </member>
  2116. <member name="M:DG.Tweening.TweenSettingsExtensions.OnPause``1(``0,DG.Tweening.TweenCallback)">
  2117. <summary>Sets the onPlay callback for the tween.
  2118. Called when the tween state changes from playing to paused.
  2119. If the tween has autoKill set to FALSE, this is called also when the tween reaches completion.</summary>
  2120. </member>
  2121. <member name="M:DG.Tweening.TweenSettingsExtensions.OnRewind``1(``0,DG.Tweening.TweenCallback)">
  2122. <summary>Sets the onRewind callback for the tween.
  2123. Called when the tween is rewinded,
  2124. either by calling <code>Rewind</code> or by reaching the start position while playing backwards.
  2125. Rewinding a tween that is already rewinded will not fire this callback</summary>
  2126. </member>
  2127. <member name="M:DG.Tweening.TweenSettingsExtensions.OnUpdate``1(``0,DG.Tweening.TweenCallback)">
  2128. <summary>Sets the onUpdate callback for the tween.
  2129. Called each time the tween updates</summary>
  2130. </member>
  2131. <member name="M:DG.Tweening.TweenSettingsExtensions.OnStepComplete``1(``0,DG.Tweening.TweenCallback)">
  2132. <summary>Sets the onStepComplete callback for the tween.
  2133. Called the moment the tween completes one loop cycle, even when going backwards</summary>
  2134. </member>
  2135. <member name="M:DG.Tweening.TweenSettingsExtensions.OnComplete``1(``0,DG.Tweening.TweenCallback)">
  2136. <summary>Sets the onComplete callback for the tween.
  2137. Called the moment the tween reaches its final forward position, loops included</summary>
  2138. </member>
  2139. <member name="M:DG.Tweening.TweenSettingsExtensions.OnKill``1(``0,DG.Tweening.TweenCallback)">
  2140. <summary>Sets the onKill callback for the tween.
  2141. Called the moment the tween is killed</summary>
  2142. </member>
  2143. <member name="M:DG.Tweening.TweenSettingsExtensions.OnWaypointChange``1(``0,DG.Tweening.TweenCallback{System.Int32})">
  2144. <summary>Sets the onWaypointChange callback for the tween.
  2145. Called when a path tween's current waypoint changes</summary>
  2146. </member>
  2147. <member name="M:DG.Tweening.TweenSettingsExtensions.SetAs``1(``0,DG.Tweening.Tween)">
  2148. <summary>Sets the parameters of the tween (id, ease, loops, delay, timeScale, callbacks, etc) as the parameters of the given one.
  2149. Doesn't copy specific SetOptions settings: those will need to be applied manually each time.
  2150. <para>Has no effect if the tween has already started.</para>
  2151. NOTE: the tween's <code>target</code> will not be changed</summary>
  2152. <param name="asTween">Tween from which to copy the parameters</param>
  2153. </member>
  2154. <member name="M:DG.Tweening.TweenSettingsExtensions.SetAs``1(``0,DG.Tweening.TweenParams)">
  2155. <summary>Sets the parameters of the tween (id, ease, loops, delay, timeScale, callbacks, etc) as the parameters of the given TweenParams.
  2156. <para>Has no effect if the tween has already started.</para></summary>
  2157. <param name="tweenParams">TweenParams from which to copy the parameters</param>
  2158. </member>
  2159. <member name="M:DG.Tweening.TweenSettingsExtensions.Append(DG.Tweening.Sequence,DG.Tweening.Tween)">
  2160. <summary>Adds the given tween to the end of the Sequence.
  2161. Has no effect if the Sequence has already started</summary>
  2162. <param name="t">The tween to append</param>
  2163. </member>
  2164. <member name="M:DG.Tweening.TweenSettingsExtensions.Prepend(DG.Tweening.Sequence,DG.Tweening.Tween)">
  2165. <summary>Adds the given tween to the beginning of the Sequence, pushing forward the other nested content.
  2166. Has no effect if the Sequence has already started</summary>
  2167. <param name="t">The tween to prepend</param>
  2168. </member>
  2169. <member name="M:DG.Tweening.TweenSettingsExtensions.Join(DG.Tweening.Sequence,DG.Tweening.Tween)">
  2170. <summary>Inserts the given tween at the same time position of the last tween, callback or intervale added to the Sequence.
  2171. Note that, in case of a Join after an interval, the insertion time will be the time where the interval starts, not where it finishes.
  2172. Has no effect if the Sequence has already started</summary>
  2173. </member>
  2174. <member name="M:DG.Tweening.TweenSettingsExtensions.Insert(DG.Tweening.Sequence,System.Single,DG.Tweening.Tween)">
  2175. <summary>Inserts the given tween at the given time position in the Sequence,
  2176. automatically adding an interval if needed.
  2177. Has no effect if the Sequence has already started</summary>
  2178. <param name="atPosition">The time position where the tween will be placed</param>
  2179. <param name="t">The tween to insert</param>
  2180. </member>
  2181. <member name="M:DG.Tweening.TweenSettingsExtensions.AppendInterval(DG.Tweening.Sequence,System.Single)">
  2182. <summary>Adds the given interval to the end of the Sequence.
  2183. Has no effect if the Sequence has already started</summary>
  2184. <param name="interval">The interval duration</param>
  2185. </member>
  2186. <member name="M:DG.Tweening.TweenSettingsExtensions.PrependInterval(DG.Tweening.Sequence,System.Single)">
  2187. <summary>Adds the given interval to the beginning of the Sequence, pushing forward the other nested content.
  2188. Has no effect if the Sequence has already started</summary>
  2189. <param name="interval">The interval duration</param>
  2190. </member>
  2191. <member name="M:DG.Tweening.TweenSettingsExtensions.AppendCallback(DG.Tweening.Sequence,DG.Tweening.TweenCallback)">
  2192. <summary>Adds the given callback to the end of the Sequence.
  2193. Has no effect if the Sequence has already started</summary>
  2194. <param name="callback">The callback to append</param>
  2195. </member>
  2196. <member name="M:DG.Tweening.TweenSettingsExtensions.PrependCallback(DG.Tweening.Sequence,DG.Tweening.TweenCallback)">
  2197. <summary>Adds the given callback to the beginning of the Sequence, pushing forward the other nested content.
  2198. Has no effect if the Sequence has already started</summary>
  2199. <param name="callback">The callback to prepend</param>
  2200. </member>
  2201. <member name="M:DG.Tweening.TweenSettingsExtensions.InsertCallback(DG.Tweening.Sequence,System.Single,DG.Tweening.TweenCallback)">
  2202. <summary>Inserts the given callback at the given time position in the Sequence,
  2203. automatically adding an interval if needed.
  2204. Has no effect if the Sequence has already started</summary>
  2205. <param name="atPosition">The time position where the callback will be placed</param>
  2206. <param name="callback">The callback to insert</param>
  2207. </member>
  2208. <member name="M:DG.Tweening.TweenSettingsExtensions.From``1(``0)">
  2209. <summary>Changes a TO tween into a FROM tween: sets the current target's position as the tween's endValue
  2210. then immediately sends the target to the previously set endValue.</summary>
  2211. </member>
  2212. <member name="M:DG.Tweening.TweenSettingsExtensions.From``1(``0,System.Boolean)">
  2213. <summary>Changes a TO tween into a FROM tween: sets the current target's position as the tween's endValue
  2214. then immediately sends the target to the previously set endValue.</summary>
  2215. <param name="isRelative">If TRUE the FROM value will be calculated as relative to the current one</param>
  2216. </member>
  2217. <member name="M:DG.Tweening.TweenSettingsExtensions.SetDelay``1(``0,System.Single)">
  2218. <summary>Sets a delayed startup for the tween.
  2219. <para>Has no effect on Sequences or if the tween has already started</para></summary>
  2220. </member>
  2221. <member name="M:DG.Tweening.TweenSettingsExtensions.SetRelative``1(``0)">
  2222. <summary>Sets the tween as relative
  2223. (the endValue will be calculated as <code>startValue + endValue</code> instead than being used directly).
  2224. <para>Has no effect on Sequences or if the tween has already started</para></summary>
  2225. </member>
  2226. <member name="M:DG.Tweening.TweenSettingsExtensions.SetRelative``1(``0,System.Boolean)">
  2227. <summary>If isRelative is TRUE sets the tween as relative
  2228. (the endValue will be calculated as <code>startValue + endValue</code> instead than being used directly).
  2229. <para>Has no effect on Sequences or if the tween has already started</para></summary>
  2230. </member>
  2231. <member name="M:DG.Tweening.TweenSettingsExtensions.SetSpeedBased``1(``0)">
  2232. <summary>If isSpeedBased is TRUE sets the tween as speed based
  2233. (the duration will represent the number of units the tween moves x second).
  2234. <para>Has no effect on Sequences, nested tweens, or if the tween has already started</para></summary>
  2235. </member>
  2236. <member name="M:DG.Tweening.TweenSettingsExtensions.SetSpeedBased``1(``0,System.Boolean)">
  2237. <summary>If isSpeedBased is TRUE sets the tween as speed based
  2238. (the duration will represent the number of units the tween moves x second).
  2239. <para>Has no effect on Sequences, nested tweens, or if the tween has already started</para></summary>
  2240. </member>
  2241. <member name="M:DG.Tweening.TweenSettingsExtensions.SetOptions(DG.Tweening.Core.TweenerCore{System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions},System.Boolean)">
  2242. <summary>Options for float tweens</summary>
  2243. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  2244. </member>
  2245. <member name="M:DG.Tweening.TweenSettingsExtensions.SetOptions(DG.Tweening.Core.TweenerCore{UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions},System.Boolean)">
  2246. <summary>Options for Vector2 tweens</summary>
  2247. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  2248. </member>
  2249. <member name="M:DG.Tweening.TweenSettingsExtensions.SetOptions(DG.Tweening.Core.TweenerCore{UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions},DG.Tweening.AxisConstraint,System.Boolean)">
  2250. <summary>Options for Vector2 tweens</summary>
  2251. <param name="axisConstraint">Selecting an axis will tween the vector only on that axis, leaving the others untouched</param>
  2252. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  2253. </member>
  2254. <member name="M:DG.Tweening.TweenSettingsExtensions.SetOptions(DG.Tweening.Core.TweenerCore{UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions},System.Boolean)">
  2255. <summary>Options for Vector3 tweens</summary>
  2256. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  2257. </member>
  2258. <member name="M:DG.Tweening.TweenSettingsExtensions.SetOptions(DG.Tweening.Core.TweenerCore{UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions},DG.Tweening.AxisConstraint,System.Boolean)">
  2259. <summary>Options for Vector3 tweens</summary>
  2260. <param name="axisConstraint">Selecting an axis will tween the vector only on that axis, leaving the others untouched</param>
  2261. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  2262. </member>
  2263. <member name="M:DG.Tweening.TweenSettingsExtensions.SetOptions(DG.Tweening.Core.TweenerCore{UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions},System.Boolean)">
  2264. <summary>Options for Vector4 tweens</summary>
  2265. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  2266. </member>
  2267. <member name="M:DG.Tweening.TweenSettingsExtensions.SetOptions(DG.Tweening.Core.TweenerCore{UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions},DG.Tweening.AxisConstraint,System.Boolean)">
  2268. <summary>Options for Vector4 tweens</summary>
  2269. <param name="axisConstraint">Selecting an axis will tween the vector only on that axis, leaving the others untouched</param>
  2270. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  2271. </member>
  2272. <member name="M:DG.Tweening.TweenSettingsExtensions.SetOptions(DG.Tweening.Core.TweenerCore{UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions},System.Boolean)">
  2273. <summary>Options for Quaternion tweens</summary>
  2274. <param name="useShortest360Route">If TRUE (default) the rotation will take the shortest route, and will not rotate more than 360°.
  2275. If FALSE the rotation will be fully accounted. Is always FALSE if the tween is set as relative</param>
  2276. </member>
  2277. <member name="M:DG.Tweening.TweenSettingsExtensions.SetOptions(DG.Tweening.Core.TweenerCore{UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions},System.Boolean)">
  2278. <summary>Options for Color tweens</summary>
  2279. <param name="alphaOnly">If TRUE only the alpha value of the color will be tweened</param>
  2280. </member>
  2281. <member name="M:DG.Tweening.TweenSettingsExtensions.SetOptions(DG.Tweening.Core.TweenerCore{UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions},System.Boolean)">
  2282. <summary>Options for Vector4 tweens</summary>
  2283. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  2284. </member>
  2285. <member name="M:DG.Tweening.TweenSettingsExtensions.SetOptions(DG.Tweening.Core.TweenerCore{System.String,System.String,DG.Tweening.Plugins.Options.StringOptions},System.Boolean,DG.Tweening.ScrambleMode,System.String)">
  2286. <summary>Options for Vector4 tweens</summary>
  2287. <param name="richTextEnabled">If TRUE, rich text will be interpreted correctly while animated,
  2288. otherwise all tags will be considered as normal text</param>
  2289. <param name="scrambleMode">The type of scramble to use, if any</param>
  2290. <param name="scrambleChars">A string containing the characters to use for scrambling.
  2291. Use as many characters as possible (minimum 10) because DOTween uses a fast scramble mode which gives better results with more characters.
  2292. Leave it to NULL to use default ones</param>
  2293. </member>
  2294. <member name="M:DG.Tweening.TweenSettingsExtensions.SetOptions(DG.Tweening.Core.TweenerCore{UnityEngine.Vector3,UnityEngine.Vector3[],DG.Tweening.Plugins.Options.Vector3ArrayOptions},System.Boolean)">
  2295. <summary>Options for Vector3Array tweens</summary>
  2296. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  2297. </member>
  2298. <member name="M:DG.Tweening.TweenSettingsExtensions.SetOptions(DG.Tweening.Core.TweenerCore{UnityEngine.Vector3,UnityEngine.Vector3[],DG.Tweening.Plugins.Options.Vector3ArrayOptions},DG.Tweening.AxisConstraint,System.Boolean)">
  2299. <summary>Options for Vector3Array tweens</summary>
  2300. <param name="snapping">If TRUE the tween will smoothly snap all values to integers</param>
  2301. </member>
  2302. <member name="M:DG.Tweening.TweenSettingsExtensions.SetOptions(DG.Tweening.Core.TweenerCore{UnityEngine.Vector3,DG.Tweening.Plugins.Core.PathCore.Path,DG.Tweening.Plugins.Options.PathOptions},DG.Tweening.AxisConstraint,DG.Tweening.AxisConstraint)">
  2303. <summary>Options for Path tweens (created via the <code>DOPath</code> shortcut)</summary>
  2304. <param name="lockPosition">The eventual movement axis to lock. You can input multiple axis if you separate them like this:
  2305. <para>AxisConstrain.X | AxisConstraint.Y</para></param>
  2306. <param name="lockRotation">The eventual rotation axis to lock. You can input multiple axis if you separate them like this:
  2307. <para>AxisConstrain.X | AxisConstraint.Y</para></param>
  2308. </member>
  2309. <member name="M:DG.Tweening.TweenSettingsExtensions.SetOptions(DG.Tweening.Core.TweenerCore{UnityEngine.Vector3,DG.Tweening.Plugins.Core.PathCore.Path,DG.Tweening.Plugins.Options.PathOptions},System.Boolean,DG.Tweening.AxisConstraint,DG.Tweening.AxisConstraint)">
  2310. <summary>Options for Path tweens (created via the <code>DOPath</code> shortcut)</summary>
  2311. <param name="closePath">If TRUE the path will be automatically closed</param>
  2312. <param name="lockPosition">The eventual movement axis to lock. You can input multiple axis if you separate them like this:
  2313. <para>AxisConstrain.X | AxisConstraint.Y</para></param>
  2314. <param name="lockRotation">The eventual rotation axis to lock. You can input multiple axis if you separate them like this:
  2315. <para>AxisConstrain.X | AxisConstraint.Y</para></param>
  2316. </member>
  2317. <member name="M:DG.Tweening.TweenSettingsExtensions.SetLookAt(DG.Tweening.Core.TweenerCore{UnityEngine.Vector3,DG.Tweening.Plugins.Core.PathCore.Path,DG.Tweening.Plugins.Options.PathOptions},UnityEngine.Vector3,System.Nullable{UnityEngine.Vector3},System.Nullable{UnityEngine.Vector3})">
  2318. <summary>Additional LookAt options for Path tweens (created via the <code>DOPath</code> shortcut).
  2319. Orients the target towards the given position.
  2320. Must be chained directly to the tween creation method or to a <code>SetOptions</code></summary>
  2321. <param name="lookAtPosition">The position to look at</param>
  2322. <param name="forwardDirection">The eventual direction to consider as "forward".
  2323. If left to NULL defaults to the regular forward side of the transform</param>
  2324. <param name="up">The vector that defines in which direction up is (default: Vector3.up)</param>
  2325. </member>
  2326. <member name="M:DG.Tweening.TweenSettingsExtensions.SetLookAt(DG.Tweening.Core.TweenerCore{UnityEngine.Vector3,DG.Tweening.Plugins.Core.PathCore.Path,DG.Tweening.Plugins.Options.PathOptions},UnityEngine.Transform,System.Nullable{UnityEngine.Vector3},System.Nullable{UnityEngine.Vector3})">
  2327. <summary>Additional LookAt options for Path tweens (created via the <code>DOPath</code> shortcut).
  2328. Orients the target towards another transform.
  2329. Must be chained directly to the tween creation method or to a <code>SetOptions</code></summary>
  2330. <param name="lookAtTransform">The transform to look at</param>
  2331. <param name="forwardDirection">The eventual direction to consider as "forward".
  2332. If left to NULL defaults to the regular forward side of the transform</param>
  2333. <param name="up">The vector that defines in which direction up is (default: Vector3.up)</param>
  2334. </member>
  2335. <member name="M:DG.Tweening.TweenSettingsExtensions.SetLookAt(DG.Tweening.Core.TweenerCore{UnityEngine.Vector3,DG.Tweening.Plugins.Core.PathCore.Path,DG.Tweening.Plugins.Options.PathOptions},System.Single,System.Nullable{UnityEngine.Vector3},System.Nullable{UnityEngine.Vector3})">
  2336. <summary>Additional LookAt options for Path tweens (created via the <code>DOPath</code> shortcut).
  2337. Orients the target to the path, with the given lookAhead.
  2338. Must be chained directly to the tween creation method or to a <code>SetOptions</code></summary>
  2339. <param name="lookAhead">The percentage of lookAhead to use (0 to 1)</param>
  2340. <param name="forwardDirection">The eventual direction to consider as "forward".
  2341. If left to NULL defaults to the regular forward side of the transform</param>
  2342. <param name="up">The vector that defines in which direction up is (default: Vector3.up)</param>
  2343. </member>
  2344. <member name="T:DG.Tweening.LogBehaviour">
  2345. <summary>
  2346. Types of log behaviours
  2347. </summary>
  2348. </member>
  2349. <member name="F:DG.Tweening.LogBehaviour.Default">
  2350. <summary>Log only warnings and errors</summary>
  2351. </member>
  2352. <member name="F:DG.Tweening.LogBehaviour.Verbose">
  2353. <summary>Log warnings, errors and additional infos</summary>
  2354. </member>
  2355. <member name="F:DG.Tweening.LogBehaviour.ErrorsOnly">
  2356. <summary>Log only errors</summary>
  2357. </member>
  2358. <member name="T:DG.Tweening.Tween">
  2359. <summary>
  2360. Indicates either a Tweener or a Sequence
  2361. </summary>
  2362. </member>
  2363. <member name="F:DG.Tweening.Tween.timeScale">
  2364. <summary>TimeScale for the tween</summary>
  2365. </member>
  2366. <member name="F:DG.Tweening.Tween.isBackwards">
  2367. <summary>If TRUE the tween wil go backwards</summary>
  2368. </member>
  2369. <member name="F:DG.Tweening.Tween.id">
  2370. <summary>Id (usable for filtering with DOTween static methods). Can be an int, a string, an object, or anything else</summary>
  2371. </member>
  2372. <member name="F:DG.Tweening.Tween.target">
  2373. <summary>Tween target (usable for filtering with DOTween static methods). Automatically set by tween creation shorcuts</summary>
  2374. </member>
  2375. <member name="F:DG.Tweening.Tween.onPlay">
  2376. <summary>Called when the tween is set in a playing state, after any eventual delay.
  2377. Also called each time the tween resumes playing from a paused state</summary>
  2378. </member>
  2379. <member name="F:DG.Tweening.Tween.onPause">
  2380. <summary>Called when the tween state changes from playing to paused.
  2381. If the tween has autoKill set to FALSE, this is called also when the tween reaches completion.</summary>
  2382. </member>
  2383. <member name="F:DG.Tweening.Tween.onRewind">
  2384. <summary>Called when the tween is rewinded,
  2385. either by calling <code>Rewind</code> or by reaching the start position while playing backwards.
  2386. Rewinding a tween that is already rewinded will not fire this callback</summary>
  2387. </member>
  2388. <member name="F:DG.Tweening.Tween.onUpdate">
  2389. <summary>Called each time the tween updates</summary>
  2390. </member>
  2391. <member name="F:DG.Tweening.Tween.onStepComplete">
  2392. <summary>Called the moment the tween completes one loop cycle</summary>
  2393. </member>
  2394. <member name="F:DG.Tweening.Tween.onComplete">
  2395. <summary>Called the moment the tween reaches completion (loops included)</summary>
  2396. </member>
  2397. <member name="F:DG.Tweening.Tween.onKill">
  2398. <summary>Called the moment the tween is killed</summary>
  2399. </member>
  2400. <member name="F:DG.Tweening.Tween.onWaypointChange">
  2401. <summary>Called when a path tween's current waypoint changes</summary>
  2402. </member>
  2403. <member name="P:DG.Tweening.Tween.fullPosition">
  2404. <summary>Gets and sets the time position (loops included, delays excluded) of the tween</summary>
  2405. </member>
  2406. <member name="T:DG.Tweening.Tweener">
  2407. <summary>
  2408. Animates a single value
  2409. </summary>
  2410. </member>
  2411. <member name="M:DG.Tweening.Tweener.ChangeStartValue(System.Object,System.Single)">
  2412. <summary>Changes the start value of a tween and rewinds it (without pausing it).
  2413. Has no effect with tweens that are inside Sequences</summary>
  2414. <param name="newStartValue">The new start value</param>
  2415. <param name="newDuration">If bigger than 0 applies it as the new tween duration</param>
  2416. </member>
  2417. <member name="M:DG.Tweening.Tweener.ChangeEndValue(System.Object,System.Single,System.Boolean)">
  2418. <summary>Changes the end value of a tween and rewinds it (without pausing it).
  2419. Has no effect with tweens that are inside Sequences</summary>
  2420. <param name="newEndValue">The new end value</param>
  2421. <param name="newDuration">If bigger than 0 applies it as the new tween duration</param>
  2422. <param name="snapStartValue">If TRUE the start value will become the current target's value, otherwise it will stay the same</param>
  2423. </member>
  2424. <member name="M:DG.Tweening.Tweener.ChangeEndValue(System.Object,System.Boolean)">
  2425. <summary>Changes the end value of a tween and rewinds it (without pausing it).
  2426. Has no effect with tweens that are inside Sequences</summary>
  2427. <param name="newEndValue">The new end value</param>
  2428. <param name="snapStartValue">If TRUE the start value will become the current target's value, otherwise it will stay the same</param>
  2429. </member>
  2430. <member name="M:DG.Tweening.Tweener.ChangeValues(System.Object,System.Object,System.Single)">
  2431. <summary>Changes the start and end value of a tween and rewinds it (without pausing it).
  2432. Has no effect with tweens that are inside Sequences</summary>
  2433. <param name="newStartValue">The new start value</param>
  2434. <param name="newEndValue">The new end value</param>
  2435. <param name="newDuration">If bigger than 0 applies it as the new tween duration</param>
  2436. </member>
  2437. <member name="T:DG.Tweening.TweenType">
  2438. <summary>
  2439. Used internally
  2440. </summary>
  2441. </member>
  2442. <member name="T:DG.Tweening.UpdateType">
  2443. <summary>
  2444. Update type
  2445. </summary>
  2446. </member>
  2447. <member name="F:DG.Tweening.UpdateType.Normal">
  2448. <summary>Updates every frame during Update calls</summary>
  2449. </member>
  2450. <member name="F:DG.Tweening.UpdateType.Late">
  2451. <summary>Updates every frame during LateUpdate calls</summary>
  2452. </member>
  2453. <member name="F:DG.Tweening.UpdateType.Fixed">
  2454. <summary>Updates using FixedUpdate calls</summary>
  2455. </member>
  2456. </members>
  2457. </doc>