summaryrefslogtreecommitdiffstats
path: root/doc/classes
Commit message (Collapse)AuthorAgeFilesLines
* Fix spelling & grammar in comments, docs, and messagesAndy Maloney2020-07-216-6/+6
|
* Mention the Data paths documentation in the File classHugo Locurcio2020-07-151-0/+1
| | | | This closes https://github.com/godotengine/godot-docs/issues/3799.
* Merge pull request #40414 from rcorre/get-mesh-arrays-docRémi Verschelde2020-07-151-1/+6
|\ | | | | Clarify how to convert PrimitiveMesh to ArrayMesh.
| * Clarify how to convert PrimitiveMesh to ArrayMesh.Ryan Roden-Corrent2020-07-151-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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) ```
* | Merge pull request #40412 from Calinou/doc-string-c-unescapeRémi Verschelde2020-07-151-2/+2
|\ \ | |/ |/| Document which escape sequences are supported by `String.c_unescape()`
| * Document which escape sequences are supported by `String.c_unescape()`Hugo Locurcio2020-07-151-2/+2
| | | | | | | | See https://github.com/godotengine/godot/issues/38716.
* | Merge pull request #37961 from Calinou/doc-csharp-dynamic-object-callRémi Verschelde2020-07-151-0/+5
|\ \ | |/ |/| Mention C# gotchas in Object's dynamic call/set/connect methods
| * Mention C# gotchas in Object's dynamic call/set/connect methodsHugo Locurcio2020-07-141-0/+5
| | | | | | | | This closes #34015.
* | Merge pull request #40380 from Calinou/doc-vehiclebody-limitationsRémi Verschelde2020-07-152-0/+2
|\ \ | | | | | | Document VehicleBody3D and VehicleWheel3D limitations
| * | Document VehicleBody3D and VehicleWheel3D limitationsHugo Locurcio2020-07-142-0/+2
| | | | | | | | | | | | | | | | | | | | | 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.
* | | Merge pull request #40268 from DanielZTing/masterRémi Verschelde2020-07-152-3/+3
|\ \ \ | | | | | | | | Fix cancel/OK button order on macOS
| * | | Fix cancel/OK button order on macOSDaniel Ting2020-07-102-3/+3
| | | | | | | | | | | | | | | | | | | | The macOS platform convention regarding button order is cancel on left, OK on right.
* | | | doc: Sync classref with current sourceRémi Verschelde2020-07-157-62/+332
| |_|/ |/| |
* | | Document updated UDPServer interface.Fabio Alessandrelli2020-07-141-3/+17
| |/ |/|
* | Commit other files changed by file_format.shAaron Franke2020-07-137-11/+11
| |
* | Merge pull request #40272 from clayjohn/VULKAN-time-slicingRémi Verschelde2020-07-112-5/+11
|\ \ | | | | | | Add incremental update mode to sky
| * | Add incremental update mode to skyclayjohn2020-07-112-5/+11
| | |
* | | Merge pull request #40193 from KoBeWi/dem_pikksRémi Verschelde2020-07-111-5/+5
|\ \ \ | |_|/ |/| | Allow Area2D and 3D mouse events without collision layer
| * | Allow Area2D and 3D mouse events without a collision layerTomasz Chabora2020-07-101-5/+5
| | | | | | | | | | | | Co-authored-by: madmiraal <madmiraal@users.noreply.github.com>
* | | Added 'fma' function to shader languageYuri Roubinsky2020-07-101-0/+29
| | |
* | | Merge pull request #40121 from Calinou/enable-file-loggingRémi Verschelde2020-07-101-2/+4
|\ \ \ | | | | | | | | Enable file logging by default on desktops to help with troubleshooting
| * | | Enable file logging by default on desktops to help with troubleshootingHugo Locurcio2020-07-081-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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.
* | | | Merge pull request #40243 from nathanfranke/fix-regression-directory-open-checkRémi Verschelde2020-07-101-1/+3
|\ \ \ \ | | | | | | | | | | Follow-Up Fix Directory Open
| * | | | Follow-Up Fix Directory OpenNathan Franke2020-07-101-1/+3
| | |/ / | |/| |
* | | | Merge pull request #40246 from Calinou/doc-httprequest-post-exampleRémi Verschelde2020-07-101-1/+9
|\ \ \ \ | | | | | | | | | | Add a POST request example to the HTTPRequest class documentation
| * | | | Add a POST request example to the HTTPRequest class documentationHugo Locurcio2020-07-101-1/+9
| |/ / /
* | | | Merge pull request #40210 from RantingBob/patch-1Rémi Verschelde2020-07-101-1/+2
|\ \ \ \ | |_|_|/ |/| | | Update Resource.xml to explain behavior of duplicate when subresource…
| * | | Update Resource.xml to explain behavior of duplicate when subresources is ↵Bob Gardner2020-07-081-1/+2
| |/ / | | | | | | | | | | | | true and a subresource contains further nested resources. Updated documentation for duplicate() on Resource to better explain the behavior. As per #30385.
* | | Merge pull request #40240 from Calinou/doc-packedscene-example-instanceRémi Verschelde2020-07-091-0/+7
|\ \ \ | | | | | | | | Document how to instance a PackedScene and add it as a child
| * | | Document how to instance a PackedScene and add it as a childHugo Locurcio2020-07-091-0/+7
| |/ / | | | | | | | | | | | | | | | | | | 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.
* / / Mention `SceneTree.create_timer()` in the Timer class documentationHugo Locurcio2020-07-091-0/+1
|/ / | | | | | | | | This closes https://github.com/godotengine/godot-docs/issues/2349 (as the linked method already contains an example).
* | Add sort and has methods to PackedArraysAaron Franke2020-07-069-0/+144
| |
* | Expose methods to play scene from plugin codeYuri Sizov2020-07-061-0/+44
| |
* | Change translation parser plugin API to parse_file()SkyJJ2020-07-051-4/+21
|/
* Merge pull request #40084 from bruvzg/macos_seamless_scalingRémi Verschelde2020-07-041-0/+12
|\ | | | | [macOS] Implement seamless display scaling.
| * [macOS] Implement seamless display scaling.bruvzg2020-07-041-0/+12
| |
* | Merge pull request #40103 from Calinou/doc-fix-string-capitalizeRémi Verschelde2020-07-041-1/+1
|\ \ | |/ |/| Fix `String.capitalize()` description to follow camelCase changes
| * Fix `String.capitalize()` description to follow camelCase changesHugo Locurcio2020-07-031-1/+1
| | | | | | | | This closes #40093.
* | Merge pull request #40092 from hinlopen/remove-find-lastRémi Verschelde2020-07-041-13/+5
|\ \ | |/ |/| Remove String::find_last (same as rfind)
| * Remove String::find_last (same as rfind)Stijn Hinlopen2020-07-031-13/+5
| |
* | Merge pull request #40089 from slooths/doc-textedit-minimapRémi Verschelde2020-07-031-0/+2
|\ \ | | | | | | Add documentation for minimap_draw and minimap_width
| * | Add documentation for minimap_draw and minimap_widthSlooth2020-07-031-0/+2
| | |
* | | doc: Sync classref with current sourceRémi Verschelde2020-07-035-5/+8
| | |
* | | Merge pull request #40086 from slooths/doc-update-select-methodsRémi Verschelde2020-07-031-0/+2
|\ \ \ | | | | | | | | Update TextEdit select and select_all method descriptions
| * | | Update TextEdit select and select_all methodsSlooth2020-07-031-0/+2
| |/ /
* | | Merge pull request #40085 from slooths/doc-selecting-enabledRémi Verschelde2020-07-031-0/+2
|\ \ \ | |/ / |/| | Add documentation for selecting_enabled
| * | Add documentation for selecting_enabledSlooth2020-07-031-0/+2
| | |
* | | Merge pull request #40082 from slooths/doc-textedit-center-viewport-to-cursorRémi Verschelde2020-07-031-0/+1
|\ \ \ | |/ / |/| | Add documentation for center_viewport_to_cursor method
| * | Add documentation for center_viewport_to_cursor methodSlooth2020-07-031-0/+1
| | |
* | | Add documentation for shortcut_keys_enabledSlooth2020-07-031-0/+1
|/ /