summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2018-11-20doc: Indentation fixupsRémi Verschelde
2018-11-20doc: Sync classref with current sourceRémi Verschelde
2018-11-20Merge pull request #23812 from YeldhamDev/clear_history_version_optionalRémi Verschelde
Add argument to UndoRedo's "clear_history()" to not increase the version
2018-11-20Fill info for translation related docsMichael Alexsander Silva Dias
2018-11-19Merge pull request #20627 from malcolmhoward/core-dictionary-get-keyRémi Verschelde
#20488 core dictionary get key
2018-11-19Added Python-like .get() method to Dictionary in GDScript #20488m
Added .get() method to Dictionary class in GDScript to return the value if the key exists, or return Null if the key does not exist.
2018-11-18Add argument to UndoRedo's "clear_history()" to not increase the versionMichael Alexsander Silva Dias
2018-11-18Document use of spaces in ConfigFileJuan Linietsky
2018-11-17Fixed the default value for Input.action_press() from commit 8c45282Davide Baldo
2018-11-16Merge pull request #23685 from Kanabenki/add-store-csv-lineRémi Verschelde
Add store_csv_line method for File
2018-11-16Corrected some points discussed in #17491Juan Linietsky
2018-11-16Add store_csv_line method for FileKanabenki
2018-11-15Fix return value of get_total_character_countThomas ten Cate
Also document that it only counts visible characters. Fixes #23720
2018-11-13doc: Sync classref with current sourceRémi Verschelde
2018-11-13Implement random number generatorChaosus
Co-authored-by: Zirak <zirakertan@gmail.com>
2018-11-12Merge pull request #23090 from DavidSichma/inconsistent-kinematicRémi Verschelde
Consistency in KinematicBody
2018-11-10Merge pull request #23633 from Naryosha/docs-syncRémi Verschelde
doc: Sync classref with current source
2018-11-10doc: Sync classref with current sourcePoommetee Ketson
2018-11-10Allow to specify a custom strength when calling Input.action_press(), this ↵Davide Baldo
allows virtual axis, mainly for mobile.
2018-11-07Expose OS::move_window_to_foregroundMarcelo Fernandez
2018-11-05doc: Use HTTPS for docs.godotengine.org and point to latest branchRémi Verschelde
Fixes #23509.
2018-11-05Merge pull request #23422 from santouits/docs-expressionRémi Verschelde
Docs: Expression class docs
2018-11-04Merge pull request #23512 from MrVallentin/typosGilles Roudière
Fixed typos
2018-11-04Fixed typosMrVallentin
2018-11-03Docs: Expression class docssantouits
2018-11-03Allow plugin scene change signal to report null for empty scenes.Jared
2018-11-01Merge pull request #23411 from RandomShaper/fix-same-layer-not-deterministicRémi Verschelde
Fix canvas stacking not deterministic on same layer
2018-11-01Merge pull request #23294 from gcardozo123/issue-23235-get-collision-exceptionsRémi Verschelde
Add method get_collision_exceptions to PhysicsBody2D
2018-11-01Merge pull request #22963 from AlexHolly/doc-richtextlabelRémi Verschelde
Doc RichTextLabel push strikethrough and align
2018-11-01Add method get_collision_exceptionsGuilherme Recchi Cardozo
Adding this method to PhysicsBody, PhysicsBody2D and SoftBody. It returns a list of nodes included in collision exceptions. Fixes #23235, cheers!
2018-10-31doc: Fix invalid [enum] usesRémi Verschelde
2018-10-30Fix canvas stacking not deterministic on same layerPedro J. Estébanez
Fixes #22687.
2018-10-27Dont use equality operators with None singleton in python fileslupoDharkael
2018-10-25Doc RichTextLabel push strikethrough and alignAlexander Holland
2018-10-25doc: Sync with current sourceRémi Verschelde
2018-10-25Merge pull request #23199 from Ashafix/packedSceneMax Hilbrunner
[DOCS] more detailed example for usage of PackedScene
2018-10-25Merge pull request #23221 from pgruenbacher/lookahead_docsRémi Verschelde
added docs for lookeahead pathfollow2d.xml
2018-10-25Repaired mistyped of 'its' on several files.M. Huri
2018-10-24added docs for lookeaheadpaul gruenbacher
Fix indenting lookahead clarification fix ahead
2018-10-24more detailed example for usage of PackedSceneAshafix
2018-10-24Merge pull request #23201 from Ashafix/VectorSlicingRémi Verschelde
[DOCS] Added section that coordinates can be accessed via indexes
2018-10-24Added section that coordinates can be accessed via indexesAshafix
2018-10-24[Docs] Repaired some words on ProjectSettingsM. Huri
2018-10-23Merge pull request #23200 from santouits/navpoldocsMax Hilbrunner
NavigationPolygon descriptions of the class and methods
2018-10-21Merge pull request #23206 from mhilbrunner/docs-streampeertcpMax Hilbrunner
[DOCS] StreamPeerTCP
2018-10-21[DOCS] StreamPeerTCPMax Hilbrunner
2018-10-21[DOCS] YSortMax Hilbrunner
2018-10-21NavigationPolygon descriptions of the class and methodssantouits
2018-10-18fix doc markdownAlex
2018-10-17Fix inconsistency in KinematicBodyDavid Sichma
- moved new infinite_inertia argument of move_and_slide and move_and_slide_with_snap in KinematicBody and KinematicBody2D to the end if not already there. This makes the order of arguments consistent and should keep projects from 3.0 compatible as this argument did not exist in 3.0. Docs updated accordingly. - renamed max_bounces to max_slides for consistency. Docs updated accordingly. - the argument infinite_inertia in test_move is now optional, as it is in every other movement related method. This closes #22829.