summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2018-07-17Merge pull request #19087 from danvalho/masterMax Hilbrunner
SpriteFrames: expose method to get array containing animation names
2018-07-17Merge pull request #20191 from jvdnbus/line2d-stretchMax Hilbrunner
Line2D texture stretch mode
2018-07-17Doc: Add example for array indexingRémi Verschelde
Supersedes and closes #20180.
2018-07-16Line2D texture stretch modeJorn Van denbussche
Prototype for stretching the texture across the whole line. Fixed end cap tile mode.
2018-07-12Merge pull request #20068 from Xrayez/submenu-popup-delayMax Hilbrunner
Add ability to set submenu's popup delay time on mouse hovering
2018-07-12Merge pull request #19540 from muiroc/cylinderMax Hilbrunner
Cylinder resource and collision shape (bullet only)
2018-07-10Merge pull request #20014 from Chaosus/scrollableMax Hilbrunner
Added scrollable property for sliders
2018-07-09Add ability to set submenu's popup delay time on mouse hoveringAndrii Doroshenko (Xrayez)
This allows to set delay time for the submenu to popup. Setting this value low can increase responsiveness. If the popup menu is added as a child of another (acting as a submenu), it will inherit the delay time of the parent menu item.
2018-07-09mention load in texture classtoger5
2018-07-07Added scrollable property to SlidersChaosus
2018-07-05Merge pull request #18028 from gabrii/18026Max Hilbrunner
Fix #18026. Expose TextEdit::set_draw_breakpoint_gutter.
2018-07-05Merge pull request #15881 from dertom95/EditorScenePostImportMax Hilbrunner
EditorScenePostImport: added get_source_folder() and get_source_file(…
2018-07-04Merge pull request #19849 from willnationsdev/expose-script-create-dialogMax Hilbrunner
Expose ScriptCreateDialog to EditorPlugin
2018-07-04Expose ScriptCreateDialog to EditorPluginwillnationsdev
2018-07-03Merge pull request #19244 from Chaosus/settingsperformance_and_colordeferredMax Hilbrunner
Increases settings apply speed and added deferred color setting to ColorPicker
2018-07-02Document return value of yield() with signalsThomas ten Cate
Fixes godotengine/godot-docs#1478
2018-07-01Doc: Fix typos spotted by @yurchorRémi Verschelde
2018-07-01added cylinder shape supportmuiroc
2018-06-27Document Vector2.round() and Vector3.round()Hugo Locurcio
2018-06-18Merge pull request #19612 from Zylann/get_ticks_usecRémi Verschelde
Expose OS.get_ticks_usec()
2018-06-18Expose OS.get_ticks_usec()Marc Gilleron
2018-06-18Add longer description to ViewportTexture docMel Collins
2018-06-18Added description for abs function in Rect2unknown
2018-06-18Merge pull request #19622 from mhilbrunner/docs-builtinsMax Hilbrunner
[DOCS] Builtin keywords because search is terribad
2018-06-18[DOCS] Builtin keywords because search is terribadMax Hilbrunner
2018-06-18Merge pull request #19615 from romlok/viewporttexturedocMax Hilbrunner
Add a little to ViewportTexture docs
2018-06-18Merge pull request #19621 from mhilbrunner/docs-treeitemMax Hilbrunner
[DOCS] TreeItem: Small fix for remove_child()
2018-06-18[DOCS] TreeItem: Small fix for remove_child()Max Hilbrunner
2018-06-18[DOCS] InputEventMouseButton: FactorMax Hilbrunner
2018-06-17Add a little to ViewportTexture docsMel Collins
2018-06-15Fix Vector2 doc of floor, add ceil docletheed
2018-06-15doc: Remove extraneous empty lines in descriptionsRémi Verschelde
2018-06-14Added some details in skeleton docs.tagcup
Workaround for #19551.
2018-06-13Fix invalid DEFVAL in SpatialEditorGizmo::add_unscaled_billboardRémi Verschelde
Likely added by mistake in #19487. Should fix #19543.
2018-06-13Style fixes for commit d5bb6faaRémi Verschelde
2018-06-13Merge pull request #19526 from robojumper/fix_tutorialsRémi Verschelde
Add support for tutorial links to makerst.py
2018-06-12Add support for tutorial links to makerst.pyrobojumper
Also change the <tutorials> structure to make use of individual <link> tags
2018-06-11-Make sure that ProjectSettings are properly dumped when dumping docs.Juan Linietsky
-Documented all properties of project settings Update documentation for ProjectSettings
2018-06-10updated Viewport docs to correct wrong information and fill out empty sectionsclayjohn
2018-06-08Added some documentation to particlesBastiaan Olij
2018-06-05Doc: Fix typo in File documentationRémi Verschelde
Fixes #19383.
2018-06-05SpriteFrames: expose method to get array containing animation namesdanvalho
2018-06-03Add option to disable automatic multiplayer pollFabio Alessandrelli
Automatic poll from SceneTree is enabled by default. This allows for polling (and thus RPCs/RSETs) manually in other loops (e.g. physics, thread, specific step) and for proper mutex protecion when accessing the multiplayer API from threads (e.g. for sending larger files in chunks).
2018-05-31makerst.py: Properly escape \ for rstRémi Verschelde
Fixes godotengine/godot-docs#1486.
2018-05-31Increase settings apply speed and added deferred color applyChaosus
2018-05-31EditorScenePostImport: added get_source_folder() and get_source_file() methodsThomas Trocha
2018-05-30Merge pull request #19266 from akien-mga/os-execute-docMax Hilbrunner
Improve return value and docs on OS.execute regarding blocking/non-blocking variants
2018-05-30Improve breakpoints and breakpoint gutter API in TextEditGabriel Gavilan
Added breakpoint_gutter, is_breakpoint_gutter_enabled, set_breakpoint_gutter_enabled, get_breakpoints, remove_breakpoints. Fixed breakpoint_toggled signal not fierd when text is edited. Fixes #18026.
2018-05-30Improve return value of OS.execute in blocking/non-blocking variantsRémi Verschelde
Initialized the PID to -2, which will be the value returns in blocking- mode where the PID is not available. (-1 was already taken to signify an execution failure). OS::execute will now properly return a non-OK error code when it fails to execute the target file. The documentation was rewritten to be very clear about the differences between blocking and non-blocking mode. Fixes #19056.
2018-05-29New sync RPC modes to match all combinationsFabio Alessandrelli