summaryrefslogtreecommitdiffstats
path: root/doc/classes/Tween.xml
Commit message (Collapse)AuthorAgeFilesLines
* Uppercase references to color constants in documentationAnthony Cossins2023-01-131-5/+5
|
* Style: Misc docs and comment style and language fixesRémi Verschelde2022-11-021-9/+11
| | | | | | | | | | - Removed empty paragraphs in XML. - Consistently use bold style for "Example:", on a new line. - Fix usage of `[code]` when hyperlinks could be used (`[member]`, `[constant]`). - Fix invalid usage of backticks for inline code in BBCode. - Fix some American/British English spelling inconsistencies. - Other minor fixes spotted along the way, including typo fixes with codespell. - Don't specify `@GlobalScope` for `enum` and `constant`.
* Add new C# code blocks to class ref pagesPaul Joannon2022-09-191-30/+157
| | | | | | | | | - AStarGrid2D - Engine - Font - Node - OS - Tweens
* Add more clarifications about Tween processingkobewi2022-09-111-0/+9
|
* [doc] Use "param" instead of "code" to refer to parametersAndy Maloney2022-08-091-11/+11
| | | | Co-authored-by: Yuri Sizov <11782833+YuriSizov@users.noreply.github.com>
* Rename the argument tag to param in XML documentationYuri Sizov2022-08-081-27/+27
|
* Fix typos and improve clarity in Tween docssnailrhymer2022-06-281-20/+20
|
* Miscellaneous Tween fixesHaoyu Qiu2022-04-281-7/+7
|
* Make Tween.interpolate_value() statickobewi2022-04-171-3/+3
|
* Add get_total_elapsed_time() to Tweenkobewi2022-03-291-0/+7
|
* Add an XML schema for documentationHugo Locurcio2022-02-151-1/+1
| | | | | | | | This makes it easier to spot syntax errors when editing the class reference. The schema is referenced locally so validation can still work offline. Each class XML's schema conformance is also checked on GitHub Actions.
* Better handle infinite Tween loopskobewi2022-01-291-1/+1
|
* Merge pull request #56648 from KoBeWi/tween_pause()Rémi Verschelde2022-01-101-2/+5
|\
| * Fix Tween pause behaviorkobewi2022-01-091-2/+5
| |
* | Restore Tween easing descriptionskobewi2022-01-091-0/+15
|/
* Fixed Tween::interpolate_value argument order.David Sichma2021-10-291-6/+6
|
* Add a warning about infinite Tween loopskobewi2021-10-161-0/+1
|
* Add a special case for 0-time interpolationskobewi2021-09-241-0/+1
|
* Improvements to Tweens' Variant typeskobewi2021-09-161-10/+8
|
* doc: Use self-closing tags for `return` and `argument`Rémi Verschelde2021-07-301-98/+49
| | | | | | | | For the time being we don't support writing a description for those, preferring having all details in the method's description. Using self-closing tags saves half the lines, and prevents contributors from thinking that they should write the argument or return documentation there.
* Fix various typos with codespellluz paz2021-07-251-2/+2
| | | | Found via `codespell -q 3 -S ./thirdparty,*.po,./DONORS.md -L ackward,ang,ans,ba,beng,cas,childs,childrens,dof,doubleclick,fave,findn,hist,inout,leapyear,lod,nd,numer,ois,ony,paket,seeked,sinc,switchs,te,uint`
* Correct the description of Tween.custom_stepkobewi2021-06-241-2/+1
|
* Complete rewrite of TweensTomasz Chabora2021-06-191-282/+227
| | | | | | | | | | * Tweens were changed from Node to RefCounted. New API is inspired by DOTween. * Tweens are created and managed by SceneTree, similar to SceneTreeTimer, which makes them ultra cheap to use a lot. * Animating with Tweens is done by creating sequences of Tweeners. You create them from code and they autostart by default (fire-and-forget). * There are 4 Tweeners that cover the former Tween functionality: PropertyTweener, IntervalTweener, CallbackTweener and MethodTweener. * The methods were simplified a lot. Long argument lists are replaced with chained calls on Tweens and Tweeners. * Tweeners by default execute in sequence, so it's easy to create complex chained animations. * You can bind a Tween to a node. Tween will be removed automatically when the bound node is freed.
* class reference proofreadingPaul Joannon2021-03-191-1/+1
|
* Docs: Port Code Examples to C# (R, S, T, U)HaSa10022021-03-051-2/+11
| | | | | | | | | | | | | | | | | | | | | * RenderingServer * RichTextEffect * SceneTree * SceneTreeTimer * ScriptCreateDialog * SpinBox * Sprite2D * StreamPeer * String * SurfaceTool * TextEdit * TileMap * Tree * Tween * UDPServer * UndoRedo Co-authored-by: Aaron Franke <arnfranke@yahoo.com>
* Tween.xml word order fixAndreas Gustafsson2020-06-231-1/+1
| | | | Change the word order of '...the where...' into '...where the...'.
* Tweak Tween cheatsheet link formatting to avoid rST conversion bugHugo Locurcio2020-05-011-1/+1
| | | | reStructuredText doesn't allow embedding links in bold/italic text.
* Add an easing/transition type cheatsheet to the Tween documentationHugo Locurcio2020-04-171-2/+3
| | | | Related to https://github.com/godotengine/godot-docs/pull/3403.
* Removed boolean return type from majority of method in TweenYuri Roubinsky2020-03-061-18/+18
|
* doc: Sync classref with StringName/Callable changesRémi Verschelde2020-02-221-9/+9
|
* Update docs to version 4.0clayjohn2020-01-311-1/+1
|
* doc: Add a short AnimationPlayer versus Tween comparisonHugo Locurcio2020-01-311-0/+1
| | | | | | Many newcomers are confused about which one to choose for animating properties. This should help clarify the situation with regards to AnimationPlayer versus Tween.
* doc: Drop unused 'category' property from headerRémi Verschelde2020-01-261-1/+1
| | | | | | | | | | We already removed it from the online docs with #35132. Currently it can only be "Built-In Types" (Variant types) or "Core" (everything else), which is of limited use. We might also want to consider dropping it from `ClassDB` altogether in Godot 4.0.
* doc: Sync classref with current sourceRémi Verschelde2019-12-131-12/+12
| | | | Also apply clang-format.
* doc: Markup fixes for enums and constantsRémi Verschelde2019-12-061-2/+2
|
* doc: Remove hardcoded default values from descriptionsRémi Verschelde2019-06-301-1/+1
| | | | They are now generated automatically by doctool.
* doc: Add default values to all propertiesRémi Verschelde2019-06-301-3/+3
| | | | Thanks to @bojidar-bg's impressive work in #29380.
* Proofread and improve the whole class referenceHugo Locurcio2019-06-271-9/+10
| | | | | | | | | | | | | - Document a few more properties and methods - Add more information to many classes - Fix lots of typos and gramar mistakes - Use [code] tags for parameters consistently - Use [b] and [i] tags consistently - Put "Warning:" and "Note:" on their own line to be more visible, and make them always bold - Tweak formatting in code examples to be more readable - Use double quotes consistently - Add more links to third-party technologies
* doc: Replace all [code]CONSTANT[/code] by new [constant CONSTANT] hyperlinksRémi Verschelde2019-06-271-1/+1
|
* doc: Drop unused <demos> tagRémi Verschelde2019-04-191-2/+0
|
* Merge pull request #27233 from Chaosus/tween_signalRémi Verschelde2019-04-051-0/+5
|\ | | | | Added signal for Tween emitted at full completion
| * Added signal for Tween emitted at completionChaosus2019-04-031-0/+5
| |
* | doc: Bump version to 3.2Rémi Verschelde2019-04-011-1/+1
|/
* mentioned possible use of property:component syntaxpsuhas772019-03-031-1/+1
| | | | Referencing #26466 , added possible use of property:component syntax for functions like interpolate_property, follow_property,etc.. in the class description.
* doc: Fix wrong references found by Sphinx and new makerst.pyRémi Verschelde2019-01-071-1/+1
|
* doc: Add missing commas after "If true/false"Rémi Verschelde2018-12-201-1/+1
|
* doc: Fix invalid [enum] usesRémi Verschelde2018-10-311-1/+1
|
* [Docs] Remove double-spaces from descriptions, as well a couple other small ↵LikeLakers22018-09-231-8/+8
| | | | fixes
* [DOCS] get_indexed, tweenFluffel2018-08-111-1/+1
|
* doc: Sync classref with current sourceRémi Verschelde2018-07-261-6/+0
| | | | Fix various missing arguments in bindings.