summaryrefslogtreecommitdiff
path: root/doc/classes
AgeCommit message (Collapse)Author
2020-07-20Clarify TreeItem return valuesTheDuriel
2020-07-20Merge pull request #40409 from Calinou/doc-control-rect-scaleRémi Verschelde
Document caveats related to Control scaling
2020-07-20Document the process of parsing command-line argumentsAndrii Doroshenko (Xrayez)
Co-authored-by: Hugo Locurcio <hugo.locurcio@hugo.pro>
2020-07-15Mention the Data paths documentation in the File classHugo Locurcio
This closes https://github.com/godotengine/godot-docs/issues/3799.
2020-07-15Merge pull request #40414 from rcorre/get-mesh-arrays-docRémi Verschelde
Clarify how to convert PrimitiveMesh to ArrayMesh.
2020-07-15Merge pull request #40412 from Calinou/doc-string-c-unescapeRémi Verschelde
Document which escape sequences are supported by `String.c_unescape()`
2020-07-15Clarify how to convert PrimitiveMesh to ArrayMesh.Ryan Roden-Corrent
It took me a bit to figure this out, as I was initially doing something more complicated like this before I realized I just had to pass get_mesh_arrays directly to add_surface_from_arrays. ``` var arr_mesh = ArrayMesh.new() var arrays = [] arrays.resize(ArrayMesh.ARRAY_MAX) arrays[ArrayMesh.ARRAY_VERTEX] = c.get_mesh_arrays() arr_mesh.add_surface_from_arrays(Mesh.PRIMITIVE_TRIANGLES, arrays) ```
2020-07-15Merge pull request #37961 from Calinou/doc-csharp-dynamic-object-callRémi Verschelde
Mention C# gotchas in Object's dynamic call/set/connect methods
2020-07-15Document which escape sequences are supported by `String.c_unescape()`Hugo Locurcio
See https://github.com/godotengine/godot/issues/38716.
2020-07-15Document caveats related to Control scalingHugo Locurcio
This is a common topic of confusion. Clarifying its intended scope should make things easier to understand.
2020-07-15Merge pull request #40380 from Calinou/doc-vehiclebody-limitationsRémi Verschelde
Document VehicleBody3D and VehicleWheel3D limitations
2020-07-15Merge pull request #40268 from DanielZTing/masterRémi Verschelde
Fix cancel/OK button order on macOS
2020-07-15doc: Sync classref with current sourceRémi Verschelde
2020-07-14Mention C# gotchas in Object's dynamic call/set/connect methodsHugo Locurcio
This closes #34015.
2020-07-14Document VehicleBody3D and VehicleWheel3D limitationsHugo Locurcio
These classes have dozens of open bugs and missing features which may not be fixed anytime soon. It's probably better to document it upfront at this point.
2020-07-14Document updated UDPServer interface.Fabio Alessandrelli
2020-07-13Commit other files changed by file_format.shAaron Franke
2020-07-11Merge pull request #40272 from clayjohn/VULKAN-time-slicingRémi Verschelde
Add incremental update mode to sky
2020-07-11Add incremental update mode to skyclayjohn
2020-07-11Merge pull request #40193 from KoBeWi/dem_pikksRémi Verschelde
Allow Area2D and 3D mouse events without collision layer
2020-07-10Fix cancel/OK button order on macOSDaniel Ting
The macOS platform convention regarding button order is cancel on left, OK on right.
2020-07-10Added 'fma' function to shader languageYuri Roubinsky
2020-07-10Allow Area2D and 3D mouse events without a collision layerTomasz Chabora
Co-authored-by: madmiraal <madmiraal@users.noreply.github.com>
2020-07-10Merge pull request #40121 from Calinou/enable-file-loggingRémi Verschelde
Enable file logging by default on desktops to help with troubleshooting
2020-07-10Merge pull request #40243 from nathanfranke/fix-regression-directory-open-checkRémi Verschelde
Follow-Up Fix Directory Open
2020-07-10Merge pull request #40246 from Calinou/doc-httprequest-post-exampleRémi Verschelde
Add a POST request example to the HTTPRequest class documentation
2020-07-10Follow-Up Fix Directory OpenNathan Franke
2020-07-10Add a POST request example to the HTTPRequest class documentationHugo Locurcio
2020-07-10Merge pull request #40210 from RantingBob/patch-1Rémi Verschelde
Update Resource.xml to explain behavior of duplicate when subresource…
2020-07-09Merge pull request #40240 from Calinou/doc-packedscene-example-instanceRémi Verschelde
Document how to instance a PackedScene and add it as a child
2020-07-09Document how to instance a PackedScene and add it as a childHugo Locurcio
This information was already present in `@GDScript.preload()`, but it's not easy to find. This closes https://github.com/godotengine/godot-docs/issues/3338.
2020-07-09Mention `SceneTree.create_timer()` in the Timer class documentationHugo Locurcio
This closes https://github.com/godotengine/godot-docs/issues/2349 (as the linked method already contains an example).
2020-07-08Enable file logging by default on desktops to help with troubleshootingHugo Locurcio
- Use the `.log` file extension (recognized on Windows out of the box) to better hint that generated files are logs. Some editors provide dedicated syntax highlighting for those files. - Use an underscore to separate the basename from the date and the date from the time in log filenames. This makes the filename easier to read. - Keep only 5 log files by default to decrease disk usage in case messages are spammed.
2020-07-08Update Resource.xml to explain behavior of duplicate when subresources is ↵Bob Gardner
true and a subresource contains further nested resources. Updated documentation for duplicate() on Resource to better explain the behavior. As per #30385.
2020-07-06Add sort and has methods to PackedArraysAaron Franke
2020-07-06Expose methods to play scene from plugin codeYuri Sizov
2020-07-05Change translation parser plugin API to parse_file()SkyJJ
2020-07-04Merge pull request #40084 from bruvzg/macos_seamless_scalingRémi Verschelde
[macOS] Implement seamless display scaling.
2020-07-04Merge pull request #40103 from Calinou/doc-fix-string-capitalizeRémi Verschelde
Fix `String.capitalize()` description to follow camelCase changes
2020-07-04[macOS] Implement seamless display scaling.bruvzg
2020-07-04Merge pull request #40092 from hinlopen/remove-find-lastRémi Verschelde
Remove String::find_last (same as rfind)
2020-07-03Fix `String.capitalize()` description to follow camelCase changesHugo Locurcio
This closes #40093.
2020-07-03Merge pull request #40089 from slooths/doc-textedit-minimapRémi Verschelde
Add documentation for minimap_draw and minimap_width
2020-07-03doc: Sync classref with current sourceRémi Verschelde
2020-07-03Merge pull request #40086 from slooths/doc-update-select-methodsRémi Verschelde
Update TextEdit select and select_all method descriptions
2020-07-03Remove String::find_last (same as rfind)Stijn Hinlopen
2020-07-03Merge pull request #40085 from slooths/doc-selecting-enabledRémi Verschelde
Add documentation for selecting_enabled
2020-07-03Add documentation for minimap_draw and minimap_widthSlooth
2020-07-03Update TextEdit select and select_all methodsSlooth
2020-07-03Add documentation for selecting_enabledSlooth