Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-05-16 | Merge pull request #61058 from Calinou/doc-performance | Rémi Verschelde | |
2022-05-16 | Merge pull request #60992 from Calinou/doc-gpuparticles3d-attractors-collision | Rémi Verschelde | |
2022-05-16 | Merge pull request #61038 from smix8/navigation_obstacle_rid_config_warn_4.x | Rémi Verschelde | |
2022-05-16 | Merge pull request #61032 from smix8/navigationmesh_bake_no_threads_4.x | Rémi Verschelde | |
2022-05-16 | Merge pull request #60958 from smix8/navigation_server_rid_utility_4.x | Rémi Verschelde | |
2022-05-16 | Document GPUParticles3D attractors and collision | Hugo Locurcio | |
2022-05-16 | Improve the Performance class documentation | Hugo Locurcio | |
This makes documentation for the Performance class 100% complete. | |||
2022-05-16 | Disable threaded NavigationMesh bake on unsupported OS | smix8 | |
Automatically disables threaded NavigationMesh bake when OS does not support threads. | |||
2022-05-15 | Expose NavigationObstacle2D/3D get_rid() and add config warning | smix8 | |
Exposes get_rid() function for scripting. Adds configuration warning when obstacle is used with not intended static body parent. | |||
2022-05-13 | Document Shape2D's collide_and_get_contacts() and ↵ | SnailRhymer | |
collide_with_motion_and_get_contacts() Expand on the format of the output array for collide_and_get_contacts and collide_with_motion_and_get_contacts, and describe how the contact point pairs can be used to calculate collision normals and depths. | |||
2022-05-13 | Merge pull request #60981 from Calinou/doc-animatedsprite2d | Rémi Verschelde | |
2022-05-13 | Remove unused `GPUParticlesCollisionHeightField3D.follow_camera_push_ratio` ↵ | Hugo Locurcio | |
property - Rename setter/getter methods for consistency. - Remove section in the inspector as there is now only 1 property within the section. - Add performance hints to property hints. | |||
2022-05-13 | Improve AnimatedSprite2D description in the class reference | Megamega53 | |
2022-05-12 | Merge pull request #60771 from snailrhymer/enum-indentation-doc-fix | Rémi Verschelde | |
Indent bullet points in enum descriptions | |||
2022-05-12 | Merge pull request #60643 from clayjohn/GLES3-3D | Rémi Verschelde | |
2022-05-12 | Indent bullet points in enum descriptions | SnailRhymer | |
When converting doc xml files to rst, add an indenation level to bullet points in the text description of enum values. Also add check to avoid out of bounds error in rstize_text. | |||
2022-05-12 | Add NavigationServer2D/3D API functions to find missing RID info | smix8 | |
Utility functions for NavigationServer2D/3D to find missing RID information when working with Server API directly. e.g. from map to regions and agents, from agent or region to map, from region to map and agents and so on .... Requirement to work with NavigationServer API exklusive without SceneTree nodes and when juggling agents and regions between multiple navigation maps. | |||
2022-05-12 | Basic 3D rendering | clayjohn | |
2022-05-12 | Fix signal completion in GDScript editor | Yuri Rubinsky | |
2022-05-12 | Add a new HashMap implementation | reduz | |
Adds a new, cleaned up, HashMap implementation. * Uses Robin Hood Hashing (https://en.wikipedia.org/wiki/Hash_table#Robin_Hood_hashing). * Keeps elements in a double linked list for simpler, ordered, iteration. * Allows keeping iterators for later use in removal (Unlike Map<>, it does not do much for performance vs keeping the key, but helps replace old code). * Uses a more modern C++ iterator API, deprecates the old one. * Supports custom allocator (in case there is a wish to use a paged one). This class aims to unify all the associative template usage and replace it by this one: * Map<> (whereas key order does not matter, which is 99% of cases) * HashMap<> * OrderedHashMap<> * OAHashMap<> | |||
2022-05-11 | Implement exponential operator (**) to GDScript/Expressions | Yuri Roubinsky | |
2022-05-10 | Merge pull request #60922 from KoBeWi/JoinedStringArray | Rémi Verschelde | |
2022-05-10 | Merge pull request #51591 from Calinou/call-group-default-immediate | Rémi Verschelde | |
Make `{call,set,notify}_group()` immediate by default | |||
2022-05-10 | Merge pull request #46208 from floppyhammer/AddFillModeToProgressBar | Rémi Verschelde | |
2022-05-10 | Mention how to join PackedStringArray | kobewi | |
2022-05-10 | Merge pull request #60855 from timothyqiu/packed-array-find | Rémi Verschelde | |
Add search methods for packed arrays | |||
2022-05-10 | Add fill_mode to ProgressBar | floppyhammer | |
2022-05-09 | Merge pull request #60845 from Chaosus/vs_color_func | Yuri Rubinsky | |
2022-05-09 | Mention that Area2D doesn't support one_way_collision | kobewi | |
2022-05-07 | Add search methods for packed arrays | Haoyu Qiu | |
* count() * find() * rfind() | |||
2022-05-07 | Push `HSV2RGB/RGB2HSV` to `ColorFunc` (from `VecFunc`) in visual shaders | Yuri Roubinsky | |
2022-05-06 | Merge pull request #59720 from Vitika9/itemlist-signals | Rémi Verschelde | |
2022-05-06 | Changed signals of ItemList | Vitika9 | |
2022-05-06 | Merge pull request #60811 from smix8/astar_zero_point_weight_4.x | Rémi Verschelde | |
2022-05-06 | Merge pull request #60802 from Calinou/profiler-idle-time-rename | Rémi Verschelde | |
2022-05-06 | Allow AStar2D/AStar3D zero point weight | smix8 | |
Allow AStar2D/AStar3D zero point weight. Limit was set to 1 which seemed like an arbitrary value as lower values down to zero can be useful for common gameplay navigation elements like teleports. | |||
2022-05-05 | Rename profiler "Idle Time" to "Process Time" | Hugo Locurcio | |
References to "idle time" are progressively being replaced by "process time" throughout the engine to avoid confusion. | |||
2022-05-06 | Fix `get_coords_level_tile_proxy` description | Casper Beyer | |
2022-05-05 | Merge pull request #60263 from SirQuartz/Chronos | Rémi Verschelde | |
2022-05-05 | Merge pull request #60304 from ellenhp/document_stereo_enhance | Rémi Verschelde | |
2022-05-05 | Make `{call,set,notify}_group()` immediate by default | Hugo Locurcio | |
This results in less surprising behavior out of the box. Internal usages were modified to keep the existing behavior identical there. | |||
2022-05-05 | Fix inconsistent naming in Time | Nicholas Huelin | |
2022-05-05 | Partially document AudioEffectStereoEnhance. | Ellen Poe | |
2022-05-05 | Merge pull request #60597 from reduz/missing-node-resource-placeholders | Rémi Verschelde | |
2022-05-05 | i18n: Sync classref translations with Weblate | Rémi Verschelde | |
(cherry picked from commit 021f92a1befcecbf6762df253af63432418a93e6) | |||
2022-05-05 | Core: Rename math 'phi' arguments to 'angle' | Rémi Verschelde | |
2022-05-05 | Specify return value of Transform3D.scaled() and more | Micky | |
Add more `[code]` (Transform3D) Co-authored-by: kleonc <9283098+kleonc@users.noreply.github.com> Add more `[code]` (Transform2D) Co-authored-by: kleonc <9283098+kleonc@users.noreply.github.com> | |||
2022-05-04 | Add ability to `bake_navigation_mesh` off thread. | Pawel Lampe | |
This feature makes it possible to workaround problems such as: - long baking time due to heavy synchronization when parsing geometry from mesh instances - crash when freeing `NavigationMeshInstance` while baking - errors when actively baking node tree is being detached from the scene tree | |||
2022-05-04 | Merge pull request #60740 from KoBeWi/postapo_frame_draw | Rémi Verschelde | |
2022-05-04 | Merge pull request #60723 from reduz/refactor-module-initialization | Rémi Verschelde | |