summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2021-09-21Added search colors to TextEdit and CodeEdit themePaulb23
2021-09-21Merge pull request #52877 from Calinou/add-print-verboseRémi Verschelde
Add `print_verbose()` built-in function to print in verbose mode only
2021-09-21Add `print_verbose()` built-in function to print in verbose mode onlyHugo Locurcio
This can be used as a shorthand for: if OS.is_stdout_verbose(): print("...") Unlike `print_debug()`, this works in release builds too and can be toggled off in debug builds.
2021-09-21Added option for spinbox to update it's value on line edit 'text_changed' ↵Eric M
rather than 'text_entered'
2021-09-21Merge pull request #52890 from bruvzg/rtl_effects_connectedRémi Verschelde
Improve connected grapheme handling in the RTL CharFX.
2021-09-21Add flag to connected grapheme. Apply RTL displacement FX only to the whole ↵bruvzg
connected grapheme. Pass more glyph info to the custom RTL FX.
2021-09-21Merge pull request #47297 from KoBeWi/📞🌳Rémi Verschelde
Improve call_group documentation
2021-09-21Merge pull request #52884 from aaronfranke/doc-no-emptyRémi Verschelde
Don't generate empty methods/constants doc sections and reduce code duplication
2021-09-20Don't generate empty doc sections and reduce code duplicationAaron Franke
2021-09-21Document how to delay code execution in a non-blocking mannerHugo Locurcio
2021-09-20Merge pull request #52398 from deakcor/dev-transformRémi Verschelde
2021-09-19Expose get_skew for transform2d and add new constructorVincent D
Expose set_scale and set_skew for transform2d Replacing float by real_t Adding const parameters Updated transform2d doc
2021-09-17Merge pull request #52797 from vnen/string-indexingRémi Verschelde
2021-09-17Merge pull request #52774 from Calinou/audiostreamplayer3d-remove-out-of-rangeRémi Verschelde
2021-09-17Allow indexing of String values in scripting languagesGeorge Marques
2021-09-17Remove unused `out_of_range_mode` property from AudioStreamPlayer3DHugo Locurcio
The `out_of_range_mode` property is no longer used since audio mixing was moved out of the various AudioStreamPlayer nodes.
2021-09-17Merge pull request #52450 from aaronfranke/they-came-from-scaleRémi Verschelde
Replace Vector3.to_diagonal_matrix with Basis.from_scale
2021-09-17Allow comparing equality between builtin types and nullGeorge Marques
2021-09-17Replace Vector3.to_diagonal_matrix with Basis.from_scaleAaron Franke
2021-09-17Merge pull request #52751 from Rubonnek/rename-listener-nodesRémi Verschelde
2021-09-16Rename Listener2D/Listener3D to AudioListener2D/AudioListener3DWilson E. Alvarez
2021-09-16Remove bbcode_text from RichTextLabelHaSa1002
Also renames: - append_bbcode -> append_text - get_bbcode -> get_text - set_bbcode -> set_text - get_text -> get_parsed_text Property text is: set_text get_text
2021-09-16Merge pull request #52681 from nekomatata/rename-rigid-bodyCamille Mohr-Daurat
Rename RigidBody to RigidDynamicBody and SoftBody to SoftDynamicBody
2021-09-16Rename RigidBody to RigidDynamicBody and SoftBody to SoftDynamicBodyPouleyKetchoupp
2021-09-16Merge pull request #52740 from akien-mga/os-get_locale-languageRémi Verschelde
Implement `OS::get_locale_language()` helper method
2021-09-16Merge pull request #44885 from Jummit/duplicate-docsRémi Verschelde
Clarify that duplicate only copies exported members and fails with a constructor
2021-09-16Merge pull request #52731 from KoBeWi/tween_safe()Rémi Verschelde
Improvements to Tweens' Variant types
2021-09-16Implement `OS::get_locale_language()` helper methodRémi Verschelde
This method extracts the 2 or 3-letter language code from `OS::get_locale()`, making it easier for users to identify the "main" language code for users that might have different OS locales due to different OS or region, but should be matched to the same translation (e.g. "generic" Spanish). Fixes #40703.
2021-09-15Merge pull request #52571 from timothyqiu/expose-enumJuan Linietsky
Expose enum related methods in ClassDB
2021-09-16Merge pull request #38051 from Calinou/doc-cubemapMax Hilbrunner
Document the Cubemap class
2021-09-16Improve call_group documentationkobewi
2021-09-16Merge pull request #43240 from HaSa1002/docs-mainloopMax Hilbrunner
Docs: Fix Mainloop example
2021-09-16Merge pull request #46625 from mbrlabs/docs-mutex-lockMax Hilbrunner
Documented that mutexes are implemented recursively
2021-09-16Merge pull request #50197 from SirQuartz/patch-16Max Hilbrunner
Add note to `RichTextLabel` about BBCode and `push_*/pop` functions
2021-09-16Improvements to Tweens' Variant typeskobewi
2021-09-15Merge pull request #52679 from nekomatata/world-boundary-shapeCamille Mohr-Daurat
Rename WorldMarginShape to WorldBoundaryShape
2021-09-16Merge pull request #52472 from mhilbrunner/array-slice-docsMax Hilbrunner
Fix docs for Array's slice()
2021-09-16Merge pull request #49038 from madmiraal/fix-docs-3407Max Hilbrunner
Clarify documentation of Camera3D.get_camera_transform()
2021-09-16Merge pull request #49041 from madmiraal/fix-docs-4085Max Hilbrunner
Clarify that eof_reached() cannot be used to check if more data is available
2021-09-15Merge pull request #50207 from SirQuartz/patch-17Max Hilbrunner
Add note to `SceneTree` about pausing
2021-09-15Merge pull request #50182 from SirQuartz/patch-15Max Hilbrunner
Add many descriptions to the `Window` class
2021-09-15Merge pull request #51615 from Bhu1-V/PR/docs/cmd-pltMax Hilbrunner
`EditorCommandPalette` Documentation.
2021-09-15Merge pull request #52677 from Calinou/doc-styleboxflat-bevel-antialiasingMax Hilbrunner
Document caveats with StyleBoxFlat antialiasing and beveled corners
2021-09-15Merge pull request #52628 from mechPenSketch/imgages_in_docsMax Hilbrunner
Add Graph Illustrations to Doc
2021-09-15Merge pull request #52719 from Calinou/doc-msdf-font-renderingMax Hilbrunner
Improve documentation related to MSDF font rendering
2021-09-15Merge pull request #52656 from akien-mga/rename-vseditor-singletonMax Hilbrunner
Rename VisualScriptEditor singleton to VisualScriptCustomNodes
2021-09-15Improve documentation related to MSDF font renderingHugo Locurcio
2021-09-15[HTML5] Use browser mix rate by default on the Web.Fabio Alessandrelli
Browsers doesn't really like forcing the mix rate, e.g. Firefox does not allow input (microphone) if the mix rate is not the default one, Chrom* will exhibit worse performances, etc.
2021-09-15Rename `osx` to `macos` in input map feature tag handlingHugo Locurcio
This follows the general feature tag rename for 4.0.
2021-09-14Rename WorldMarginShape to WorldBoundaryShapePouleyKetchoupp