summaryrefslogtreecommitdiffstats
path: root/misc/extension_api_validation
Commit message (Collapse)AuthorAgeFilesLines
* Resolve load and store ops automatically for render passes for discardable ↵Dario2024-11-251-0/+19
| | | | textures.
* Core: Fix built-in enum constant bindingsDanil Alexeev2024-11-221-0/+30
|
* Expose standardize_locale add_default param publiclyDan Nicholson2024-11-211-0/+7
| | | | | | | | Comparing locales can have surprising outcomes since it standardizes locales with defaults. For example, zh and zh_CN result in an exact match since the defaults change them both to zh_Hans_CN. Expose the add_default parameter publicly with a default of false so the fully standardized locale can be inspected.
* Allow setting custom initialization vector for FileAccessEncrypted. Add ↵bruvzg2024-11-131-0/+7
| | | | export setting to set static seed for PCK encryption initialization vectors.
* [OS] Add functions to determine standard I/O device type.bruvzg2024-11-061-0/+7
|
* Add "Game" editor for better runtime debuggingMichael Alexsander2024-10-301-1/+7
|
* Fix non const animation node process functionGuilherme Sousa2024-10-261-0/+7
|
* Changed the default deadzone value for new actions from 0.5 to 0.2Roman Morozov2024-10-011-0/+8
|
* Fixed SoftBody3D handles not being clickable in 3D Editor ViewportJoel Fortier2024-09-161-0/+7
| | | | Fix erratic behaviour when modifying pinned_points via inspector
* Add support for non-blocking IO mode to `OS.execute_with_pipe`.bruvzg2024-09-061-0/+7
|
* Pass current value to `EditorInterface` node/property popupsChris Cranford2024-09-031-0/+8
|
* Expose `AudioStreamPlayer{2D,3D}::set_playing` and remove ↵Raul Santos2024-08-301-0/+9
| | | | | | | | `AudioStreamPlayer::{2D,3D}::_is_active` - The `_is_active` method seems to be unused, so it was removed. - The `_set_playing` method is now exposed, as the setter of the `playing` property. - The `play` method can't be used as a setter because it takes a `float` parameter instead of a `bool` parameter.
* [RegEx] Add show_error parameter to control error printing on compilation failNikita\Nick2024-08-281-0/+8
|
* Add optional count argument to Sempahore::postRadiant2024-08-271-0/+7
| | | | | | Co-authored-by: RandomShaper <RandomShaper@users.noreply.github.com> Co-authored-by: A Thousand Ships (she/her) <96648715+AThousandShips@users.noreply.github.com> Co-authored-by: Mickeon <Mickeon@users.noreply.github.com>
* Allow setting a cubemap as default parameter to shaderChaosus2024-08-271-0/+15
|
* Merge pull request #95594 from aaronfranke/extension-api-validationRémi Verschelde2024-08-252-14/+4
|\ | | | | | | Update expected API validation files for the releases of Godot 4.2 & 4.3
| * Update expected API validation files for the releases of Godot 4.2 & 4.3Aaron Franke2024-08-152-14/+4
| |
* | Add debug utilities for VulkanMatias N. Goldberg2024-08-211-0/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Features: - Debug-only tracking of objects by type. See get_driver_allocs_by_object_type et al. - Debug-only Breadcrumb info for debugging GPU crashes and device lost - Performance report per frame from get_perf_report - Some VMA calls had to be modified in order to insert the necessary memory callbacks Functionality marked as "debug-only" is only available in debug or dev builds. Misc fixes: - Early break optimization in RenderingDevice::uniform_set_create ============================ The work was performed by collaboration of TheForge and Google. I am merely splitting it up into smaller PRs and cleaning it up.
* | Expose `ShapeCast{2D,3D}::get_collision_result`Raul Santos2024-08-151-0/+7
|/
* Update GDExtension related CI after Godot 4.3-stable's releaseDavid Snopek2024-08-151-0/+9
|
* Bump version to 4.4-devRémi Verschelde2024-08-151-0/+0
| | | | Mr. Godot still didn't show up...
* Fix Image CowData crash when baking large lightmapsHugo Locurcio2024-07-191-0/+8
| | | | | | | | | | | This switches to 64-bit integers in select locations of the Image class, so that image resolutions of 16384×16384 (used by lightmap texture arrays) can be used properly. Values that are larger should also work. VRAM compression is also supported, although most VRAM-compressed formats are limited to individual slices of 16384×16384. WebP is limited to 16383×16383 due to format limitations.
* Re-add Skeleton3D::animate_physical_bonesSilc Lizard (Tokage) Renew2024-07-141-7/+0
|
* Fix property type of Sprite3D `frame_coords` to Vector2i from Vector2Silc Lizard (Tokage) Renew2024-07-061-0/+7
|
* Add samples playback supportAdam Scott2024-06-181-0/+7
|
* Fix extension API validation warning after #92861Rémi Verschelde2024-06-111-9/+4
|
* Fix seeking Animation immediate after playback for Discrete trackSilc Lizard (Tokage) Renew2024-06-081-0/+6
|
* Display custom data name instead of indices in TileData inspectorGilles Roudière2024-05-251-0/+7
|
* Add antialias support for CanvasItem draw primitivesYaohua Xiong2024-05-131-0/+13
| | | | | | including - rect, circle; both filled and unfilled. - polyline, multiline
* Style: Trim trailing whitespace and ensure newline at EOFRémi Verschelde2024-05-081-2/+2
| | | | Found by apply the file_format checks again via #91597.
* Implement `amplitude` to Input.vibrate_handheldRadiant2024-05-021-0/+7
| | | | | Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Co-authored-by: m4gr3d <m4gr3d@users.noreply.github.com>
* [RTL] Adds extra argument to `remove_paragraph` to skip cache invalidation ↵bruvzg2024-05-021-0/+7
| | | | and a method for manual cache invalidation.
* Extend `CanvasItem::draw_circle()` with filled, width, and antialiased optionsYaohua Xiong2024-05-021-0/+7
| | | | Make it possible to draw unfilled circle, like draw_rect(). Antialising is only implemented for unfilled version.
* Overhaul multiple caret editing in TextEdit.kit2024-04-261-0/+8
| | | | Use a multicaret edit to delay merging overlapping carets until the end.
* Improve TextEdit/LineEdit word selection.bruvzg2024-04-221-0/+7
|
* Merge pull request #90645 from Malcolmnixon/unified-xr-trackersRémi Verschelde2024-04-221-0/+21
|\ | | | | | | Rework XR Trackers to have a common ancestor
| * Rework XR Trackers to have a common ancestor. Allow creation of XRNode3D to ↵Malcolm Nixon2024-04-181-0/+21
| | | | | | | | drive node positions and visibility.
* | Merge pull request #90797 from Geometror/vsnode-comment-compatRémi Verschelde2024-04-181-3/+3
|\ \ | | | | | | | | | [Compatibility] Add stub for VisualShaderNodeComment
| * | [Compatibility] Add stub for VisualShaderNodeCommentHendrik Brucker2024-04-181-3/+3
| |/
* / Add SkeletonIK3D get/set_interpolation compat from #87888Lyuma2024-04-181-3/+0
|/
* Merge pull request #90759 from dsnopek/openxr-hand-revertRémi Verschelde2024-04-171-3/+0
|\ | | | | | | Revert `OpenXRHand` to its pre-`SkeletonModifier3D` state
| * Revert `OpenXRHand` to its pre-`SkeletonModifier3D` stateDavid Snopek2024-04-161-3/+0
| |
* | Remove experimental constrain_avoidance from NavigationRegion2Dsmix82024-04-161-0/+13
|/ | | | Removes experimental constrain_avoidance feature from NavigationRegion2D.
* replace bone_pose_updated to skeleton_updated signalSilc Lizard (Tokage) Renew2024-04-131-0/+8
|
* Revert what needs to be revertedajreckof2024-04-101-7/+0
|
* Skeleton3D: Add SkeletonModifier / Deprecate Override / Separate PBSilc Lizard (Tokage) Renew2024-04-051-0/+13
|
* Add GraphFrame and integrate it in VisualShaderHendrik Brucker2024-04-041-0/+7
|
* Merge pull request #89179 from groud/expose_tile_map_layerRémi Verschelde2024-04-041-9/+0
|\ | | | | | | Expose TileMapLayer
| * Expose TileMapLayerGilles Roudière2024-04-031-9/+0
| |
* | add partial path return option for astarashley2024-04-031-0/+13
| | | | | | | | * AStar2D, AStar3D and AStarGrid2D now can return a partial path if the destination point isn't reachable but still in the map. This option is available for both get_point_path and get_id_path