summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2019-05-31Improve AudioStreamSample documentation.follower
"Squash" of #27928. Wording based on suggestions by @LikeLakers2.
2019-05-29Merge pull request #25520 from Zylann/expose_node_custom_aabbRémi Verschelde
Exposed custom AABB setter on GeometryInstance
2019-05-28Improve the PrimitiveMesh-derived class documentationsHugo Locurcio
2019-05-28Merge pull request #29248 from Cheeseness/camera_project_fixRémi Verschelde
Add a depth parameter to Camera::project_position()
2019-05-28doc: Sync classref with current sourceRémi Verschelde
2019-05-29Add a depth parameter to Camera::project_position()Cheeseness
2019-05-28Merge pull request #28454 from homer666/popup-centered-maxsizeRémi Verschelde
Add `popup_centered_clamped()` method to Popup
2019-05-27Make animation editor change tracks positions instead of swapping themMichael Alexsander Silva Dias
2019-05-27add get_camera_rid methodJummit
2019-05-27Merge pull request #29119 from bruvzg/native_icon_supportRémi Verschelde
Add native window/taskbar icon support for Windows and macOS.
2019-05-26Add example usage for get_rect()Tomasz Chabora
2019-05-24Add "GUI skinning" tutorial link to the 'Theme' docMichael Alexsander Silva Dias
2019-05-24Merge pull request #28796 from clayjohn/GLES2-optimizationRémi Verschelde
GLES2: Allow Viewports to render directly to screen
2019-05-24Merge pull request #29055 from cbscribe/kcc_docs_animstateRémi Verschelde
[DOCS] Add descriptions to AnimationNodeStateMachine[Playback]
2019-05-24Merge pull request #29127 from Xrayez/geometry-delaunay-bindRémi Verschelde
Expose 2D Delaunay triangulation in Geometry singleton
2019-05-24Add native window/taskbar icon support for Windows and macOS.bruvzg
Co-authored-by: Markus Törnqvist <mjt@nysv.org>
2019-05-24[DOCS] Add descriptions to AnimationNodeStateMachine[Playback]Chris Bradfield
2019-05-24Merge pull request #29146 from seandheffernan/returnFix2Rémi Verschelde
Change "Return" to "Returns" where necessary in XML documentation
2019-05-24Expose 2D Delaunay triangulation in Geometry singletonAndrii Doroshenko (Xrayez)
Can be used via scripting as `Geometry.triangulate_delaunay_2d(points)` The interface is the same as in `Triangulate` library, returning indices into triangulated points.
2019-05-23Change "Return" to "Returns" where necessary in XML documentationSean Heffernan
In many of the XML files it had been noted that when the documentation refers to a return value, both "Return" and "Returns" are used. This has now been fixed to only say "Returns". Fixes #28867
2019-05-23Fixed virtual method not showing up in autocomplete and docsWiggleWizard
2019-05-22Expose 2D polygon boolean operations in Geometry singletonAndrii Doroshenko (Xrayez)
Clipper 6.4.2 is used internally to perform polypaths clipping, as well as inflating/deflating polypaths. The following methods were added: ``` Geometry.merge_polygons_2d(poly_a, poly_b) # union Geometry.clip_polygons_2d(poly_a, poly_b) # difference Geometry.intersect_polygons_2d(poly_a, poly_b) # intersection Geometry.exclude_polygons_2d(poly_a, poly_b) # xor Geometry.clip_polyline_with_polygon_2d(poly_a, poly_b) Geometry.intersect_polyline_with_polygon_2d(poly_a, poly_b) Geometry.offset_polygon_2d(polygon, delta) # inflate/deflate Geometry.offset_polyline_2d(polyline, delta) # returns polygons // This one helps to implement CSG-like behaviour: Geometry.transform_points_2d(points, transform) ``` All the methods return an array of polygons/polylines. The resulting polygons could possibly be holes which could be checked with `Geometry.is_polygon_clockwise()` which was exposed to scripting as well.
2019-05-22Merge pull request #29022 from mrcdk/preview_generator_fixesRémi Verschelde
Add some extra functions to EditorResourcePreviewGenerator
2019-05-21doc: Sync classref with current sourceRémi Verschelde
2019-05-20Merge pull request #27886 from LeonardMeagher2/obj_to_stringRémi Verschelde
Allow overriding how scripted objects are converted to strings
2019-05-20Merge pull request #28985 from rcorre/advance_condition_docsRémi Verschelde
Clarify auto_advance.
2019-05-20doc: Document default value for PhysicsBody collision layersRémi Verschelde
Supersedes #28971. Co-authored-by: Mitch Curtis <mitch.curtis@qt.io>
2019-05-20Renamed EditorResourcePreviewGenerator.should_generate_small_preview() to ↵MrCdK
generate_small_preview_automatically() Added can_generate_small_preview() so the generator uses generate() or generate_from_path() if it returns true Added can_generate_small_preview() and generate_small_preview_automatically() to the scripting languages
2019-05-19Clarify auto_advance.Ryan Roden-Corrent
Make the docs more clear about how you can use auto_advance. Calling it a "variable" is vague, so I updated the docs to clearly state that it becomes a boolean parameter on the AnimationTree. Fixes godotengine/godot-docs#2439.
2019-05-19Fix typos with codespellRémi Verschelde
Using codespell 1.15.0. Method: ``` $ cat > ../godot-word-whitelist.txt << EOF ang curvelinear doubleclick leapyear lod merchantibility nd numer ois ony que seeked synching te uint unselect webp EOF $ codespell -w -q 3 -I ../godot-word-whitelist.txt --skip="./thirdparty,*.po" $ git diff // undo unwanted changes ```
2019-05-17Merge pull request #28366 from iwek7/feature/issue28355/showSpacesInEditorMax Hilbrunner
Add feature to show spaces in code editor
2019-05-17Merge pull request #28959 from volzhs/doc-editor-plugin-update_overlaysMax Hilbrunner
Add description for EditorPlugin.update_overlays
2019-05-17Add description for EditorPlugin.update_overlaysvolzhs
2019-05-17Merge pull request #28950 from YeldhamDev/doc_string_format_linkJulian Murgia
Add "String Formatting" tutorial link to the 'String' doc
2019-05-16Add "String Formatting" tutorial link to the 'String' docMichael Alexsander Silva Dias
2019-05-16Merge pull request #28587 from Daw11/lanczosMax Hilbrunner
Implement Lanczos image filter
2019-05-16Add support for [url=] tag to makerst.pyStanislav
Fixes #28904
2019-05-15doc: Fix issues found by the parserRémi Verschelde
2019-05-15doc: Sync classref with current sourceRémi Verschelde
2019-05-14Improve the CanvasItem documentationHugo Locurcio
This makes it clear that line width and antialiasing in `draw_multiline()` aren't implemented yet (see #16448).
2019-05-13Implement ability to render viewports directly to screenclayjohn
2019-05-13Merge pull request #28326 from BastiaanOlij/center_heightmapRémi Verschelde
Center shape according to logic Bullet applies
2019-05-11updated description of Array.shuffle to properly describe that it uses the ↵hbina085
same common seed at every runtime, thus being reproducible in general
2019-05-08Docs: Add tutorials for KinematicBody2DGuilherme Felipe
2019-05-07Improved the AnimatedSprite docs; added description to speed_scale.Ken Paulson
2019-05-07Add transform support to deal with Bullets centering of shapesBastiaan Olij
2019-05-07Center shape according to logic Bullet appliesBastiaan Olij
2019-05-06Merge pull request #28330 from BastiaanOlij/improve_multimeshRémi Verschelde
Added set_as_bulk_array, fixed transform2D saving and documentation
2019-05-05Implement Lanczos image filterDaw11
2019-05-05Merge pull request #28643 from t-karcher/patch-1Max Hilbrunner
Update of RigidBody2D class description