Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-06-16 | Merge pull request #37903 from Xrayez/shape-2d-draw-bind | Rémi Verschelde | |
Bind Shape2D draw method | |||
2020-06-16 | Merge pull request #39126 from TwistedTwigleg/GSOC_2020_Working_Branch | Rémi Verschelde | |
Skeleton and Skeleton inspector low-level changes | |||
2020-06-15 | Merge pull request #39189 from touilleMan/issue-38925 | Rémi Verschelde | |
Unify OS.get_system_time_* and OS.get_unix_time | |||
2020-06-15 | Made low level changes to the Skeleton3D class and Skeleton3D inspector. ↵ | TwistedTwigleg | |
Changes listed below: * Added helper functions to Skeleton3D for converting transforms from bone space to global space, and vice versa. * Updated the Skeleton3D class reference. * Changed the icon used for bones in the Skeleton3D inspector to use BoneAttachement3D's icon. * Changed the Skeleton3D inspector to use EditorPropertyTransform and EditorPropertyVector3 when possible. * Placed the Transform/Matrix for each bone in a sub-section, so it is visually similar to the Node3D inspector. | |||
2020-06-15 | Merge pull request #39546 from vorblen/master | Rémi Verschelde | |
Add description for "absorbent" and "rough" | |||
2020-06-15 | Merge pull request #39439 from Lefl1/rename_get_action_list | Rémi Verschelde | |
Renamed InputMap.get_action_list to InputMap.action_get_events | |||
2020-06-15 | Renamed InputMap.get_action_list to InputMap.get_action_events | Lennard | |
2020-06-15 | Add description for "absorbent" and "rough" | Vorblen | |
2020-06-15 | Merge pull request #39322 from dominiks/filedialog-title-doc | Rémi Verschelde | |
Add note about automatic window title to FileDialog documentation. | |||
2020-06-15 | Merge pull request #39457 from bruvzg/kbd_layouts | Rémi Verschelde | |
Add keyboard layout enumeration / set / get functions. | |||
2020-06-15 | Merge pull request #39490 from Calinou/doc-node-virtual-method-tree | Rémi Verschelde | |
Clarify Node virtual methdods not being called if node is orphan | |||
2020-06-15 | Merge pull request #39521 from 31/fix-image-createfromdata | Rémi Verschelde | |
Fix Image.create_from_data "use_mipmaps" class doc | |||
2020-06-15 | Merge pull request #39462 from Calinou/doc-in-operator | Rémi Verschelde | |
Document the `in` operator in String, Array and Dictionary classes | |||
2020-06-15 | Merge pull request #39520 from skyace65/label | Rémi Verschelde | |
Fix label percent visible doc description | |||
2020-06-14 | Fix label percent visible doc description | skyace65 | |
2020-06-14 | Document how to resize a SubViewportContainer to avoid stretching | Hugo Locurcio | |
This closes #27534. | |||
2020-06-14 | Merge pull request #39529 from ricardoprins/pr/39419 | Rémi Verschelde | |
Add description to TileSet.is_tile_bound() method | |||
2020-06-13 | Add description to TileSet.is_tile_bound() method | Ricardo Prins | |
2020-06-13 | Fix Material.render_priority doc: no opaque sort | 31 | |
Opaque objects are rendered using the depth buffer, so the end result appears sorted, but the opaque objects themselves are not sorted. | |||
2020-06-13 | Fix Image.create_from_data use_mipmaps doc | 31 | |
The Image.create_from_data doc describes the "use_mipmaps" argument as a way to generate mipmaps, but this method only allocates and loads data. This can cause confusion, where this function reads more or less data than expected. Update the doc to be more specific that create_from_data is loading the mipmaps from the raw data. | |||
2020-06-13 | Add keyboard layout enumeration / set / get functions (macOS, Windows, ↵ | bruvzg | |
Linux/X11), remove latin variant function. | |||
2020-06-12 | Clarify Node virtual methdods not being called if node is orphan | Hugo Locurcio | |
This closes #39489. | |||
2020-06-12 | Document the `in` operator in String, Array and Dictionary classes | Hugo Locurcio | |
This also clarifies the `in` operator behavior in Object. | |||
2020-06-11 | doc: Sync classref with current source | Rémi Verschelde | |
2020-06-11 | Merge pull request #39355 from SaviHex/better-docs-links | Rémi Verschelde | |
Added a "title" attribute for the link tag in the docs xml | |||
2020-06-11 | Adds full description for AudioEffectRecord.xml | Victoria Fisher | |
2020-06-10 | Added a "title" attribute for the link tag in the docs xml | SaviHex | |
2020-06-10 | Merge pull request #39430 from Calinou/doc-3d-light-radius | Rémi Verschelde | |
Improve the 3D light documentations | |||
2020-06-10 | Improve the 3D light documentations | Hugo Locurcio | |
See https://github.com/godotengine/godot-docs/issues/3670. | |||
2020-06-10 | Merge pull request #39409 from akien-mga/astar-get_closest_point-deterministic | Rémi Verschelde | |
AStar: Make get_closest_point() deterministic for equidistant points | |||
2020-06-10 | Merge pull request #39413 from akien-mga/doc-file-store-signed-ints | Rémi Verschelde | |
doc: Make File store/get integer methods clearer | |||
2020-06-10 | Merge pull request #39429 from Calinou/doc-dictionary-hash-order | Rémi Verschelde | |
Mention ordering caveats for `Dictionary.hash()` | |||
2020-06-10 | Mention ordering caveats for `Dictionary.hash()` | Hugo Locurcio | |
See https://github.com/godotengine/godot/issues/27615. | |||
2020-06-09 | doc: Make File store/get integer methods clearer | Rémi Verschelde | |
Add an example on how to store signed integers on less than 64 bits, using one bit for the signedness. | |||
2020-06-09 | Merge pull request #39391 from YeldhamDev/filediag_file_icon | Rémi Verschelde | |
Add generic file icon and its modulation to the 'FileDialog' | |||
2020-06-09 | Update Rigidbody 2D and 3D sleep documentation. | Marcel Admiraal | |
2020-06-09 | AStar: Make get_closest_point() deterministic for equidistant points | Rémi Verschelde | |
Closes godotengine/godot-docs#3667. Supersedes #39405. | |||
2020-06-08 | Add generic file icon and its modulation to the 'FileDialog' | Michael Alexsander | |
2020-06-05 | Add note about automatic window title to FileDialog documentation. | dominiks | |
2020-06-04 | Correct misspellings of damped spring. | Marcel Admiraal | |
2020-06-04 | doc: Sync classref with current source | Rémi Verschelde | |
2020-06-03 | Merge pull request #39257 from Chaosus/fix_integer_vectors_doc | Rémi Verschelde | |
Fix docs generation for Vector2i/Vector3i/Rect2i | |||
2020-06-03 | Fix docs generation for Vector2i/Vector3i/Rect2i | Yuri Roubinsky | |
2020-06-03 | Merge pull request #39113 from nekomatata/bbcode-image-color | Rémi Verschelde | |
Add color option for img bbcode tag in RichTextLabel to tint images | |||
2020-06-03 | Merge pull request #39130 from Calinou/dynamicfont-disable-outline-antialiasing | Rémi Verschelde | |
Disable antialiasing on the DynamicFont outline as well when requested | |||
2020-06-02 | Merge pull request #39210 from Calinou/directional-light-performance-hint | Rémi Verschelde | |
Add performance hints to the DirectionalLight shadow mode property hint | |||
2020-06-02 | Clarify usage of AnimationPlayer with AnimationTree and fill in empty method ↵ | Maganty Rushyendra | |
descriptions Add clarification to docs to explain that when an `AnimationPlayer` object is paired with an `AnimationTree`, several properties and methods exposed by the `AnimationPlayer` class may not work as expected. The issues occur because an `AnimationTree` runs independently, and uses its member `AnimationPlayer* player` primarily for its `Map<StringName, AnimationData> animation_set`. Added descriptions for `root_motion_track` and `get_root_motion_transform`. | |||
2020-06-01 | Add performance hints to the DirectionalLight shadow mode property hint | Hugo Locurcio | |
This also clarifies some parts in the DirectionalLight documentation. | |||
2020-05-31 | Remove OS.get_system_time_secs/get_system_time_msecs and change ↵ | Emmanuel Leblond | |
OS.get_unix_time return type to double | |||
2020-05-30 | Add color option for img bbcode tag in RichTextLabel to tint images | PouleyKetchoupp | |