Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-06-11 | Add suffixes to all nodes and resources | FireForge | |
2022-06-08 | Merge pull request #61682 from smix8/navigation_bake_config_precision_4.x | Rémi Verschelde | |
2022-06-08 | Merge pull request #61739 from smix8/navigation_region_cost_4.x | Rémi Verschelde | |
2022-06-08 | Merge pull request #61662 from smix8/navigation_map_cell_defaults_4.x | Rémi Verschelde | |
2022-06-08 | Merge pull request #61800 from smix8/navigation_gridmap_transform_debug_4.x | Rémi Verschelde | |
2022-06-08 | Fix GridMap Navigation transforms and debug | smix8 | |
Fix GridMap navigation transforms and debug. | |||
2022-06-08 | i18n: Misc fixes translation strings | Rémi Verschelde | |
Adds some translator comments to solve some questions raised on Weblate. | |||
2022-06-08 | Merge pull request #61797 from smix8/navigation_gridmap_region_xform_4.x | Rémi Verschelde | |
Fix GridMap applying wrong NavigationRegion transform | |||
2022-06-08 | Fix GridMap applying wrong NavigationRegion transform | smix8 | |
Fix GridMap applying wrong NavigationRegion transform. | |||
2022-06-07 | Merge pull request #61784 from ↵ | Rémi Verschelde | |
Geometror/visualeditors_editorsettings_propagation Fix visual editor settings change propagation | |||
2022-06-07 | Fix visual editor settings change propagation | Hendrik Brucker | |
2022-06-06 | Add NavigationRegion costs for pathfinding | smix8 | |
Add NavigationRegion costs for pathfinding. | |||
2022-06-06 | [GDExtension] Expose Variant, NodePath and StringName hash functions. | bruvzg | |
2022-06-04 | Add warnings when NavigationMesh bake settings result in precision loss | smix8 | |
Add warnings when NavigationMesh bake settings result in precision loss. | |||
2022-06-03 | Match NavMap and ProjectSettings with NavigationMesh defaults | smix8 | |
Match NavMap and ProjectSettings with NavigationMesh defaults since the NavMap edge merging requires a matching cell_size with the NavigationMesh to create connections without issues. | |||
2022-06-03 | Merge pull request #57824 from raulsntos/csharp-typed-arrays | Rémi Verschelde | |
2022-06-03 | Support explicit values in flag properties, add C# flags support | Raul Santos | |
- Add support for explicit values in properties using `PROPERTY_HINT_FLAGS` that works the same way it does for enums. - Fix enums and flags in VisualScriptEditor (it wasn't considering the explicit value). - Use `PROPERTY_HINT_FLAGS` for C# enums with the FlagsAttribute instead of `PROPERTY_HINT_ENUM`. | |||
2022-06-03 | Generate typed array parameters in C# bindings | Raul Santos | |
Adds support for generating C# bindings that use the generic `Array<T>` type instead of the non-generic `Array` type when the registered ClassDB method specifies the array element type. | |||
2022-06-02 | Fix build error when FreeType is disabled | Haoyu Qiu | |
2022-06-02 | Merge pull request #61339 from lyuma/streampeerssl_get_stream | Rémi Verschelde | |
2022-05-31 | Merge pull request #61455 from fire-forge/tab | Rémi Verschelde | |
Add color contrast to TabContainer backgrounds in the editor | |||
2022-05-31 | Merge pull request #61463 from vnen/gdscript-await-stack | Rémi Verschelde | |
GDScript: Fix stack overflow when using multiple `await` | |||
2022-05-31 | Merge pull request #61440 from vnen/gdscript-scene-unique-nodes | Rémi Verschelde | |
GDScript: Support `%` in shorthand for `get_node` | |||
2022-05-30 | Merge pull request #61475 from smix8/navigation_fix_multimesh_bake_crash_4.x | Clay John | |
Fix MultiMeshInstance crash in navmesh baking when MultiMesh Resource is empty | |||
2022-05-30 | Improve Graphedit connection lines | Hendrik Brucker | |
2022-05-28 | Use consistent casing in editor filter/search bars | FireForge | |
2022-05-27 | Fix MultiMeshInstance crash in navmesh baking when MultiMesh Resource is empty | smix8 | |
Fix MultiMeshInstance crash in navmesh baking when MultiMesh Resource is empty | |||
2022-05-27 | GDScript: Support `%` in shorthand for `get_node` | George Marques | |
The `%` is used in scene unique nodes. Now `%` can also be used instead of `$` for the shorthand, besides being allowed generally anywhere in the path as the prefix for a node name. | |||
2022-05-27 | GDScript: Fix stack overflow when using multiple `await` | George Marques | |
2022-05-26 | Use "odd" style for TabContainers on base BG color | FireForge | |
- Use the "odd" style for TabContainers that are on a background with the same color as the default TabContainer background color to add contrast | |||
2022-05-26 | Merge pull request #59943 from jordigcs/gdscript_warning_enums | Rémi Verschelde | |
Add enum values (Ignore, Warn, Error) to GDScript warnings | |||
2022-05-25 | Add StreamPeerSSL.get_stream() accessor. | Lyuma | |
2022-05-25 | use ERR_FAIL_INDEX when preferred | Nathan Franke | |
2022-05-25 | Merge pull request #55099 from dalexeev/desc-by-blank-line | Rémi Verschelde | |
Use blank line instead of `@desc:` for doc comments | |||
2022-05-25 | Merge pull request #61389 from snailrhymer/lookup-fix | Rémi Verschelde | |
2022-05-25 | Use blank line instead of `@desc:` for doc comments | Danil Alexeev | |
2022-05-25 | Make Lookup Symbol recognize assert and preload in the script editor | SnailRhymer | |
2022-05-25 | Merge pull request #61279 from Trioct/fix-typed-array-assignment | Rémi Verschelde | |
2022-05-25 | Fix const typed array assignment | Trioct | |
2022-05-25 | Fix lookup_code to properly handle symbols at start of assignments | SnailRhymer | |
2022-05-24 | Merge pull request #61377 from smix8/navigation_gridmap_custom_mesh_offsets_4.x | Rémi Verschelde | |
2022-05-24 | Fix GridMap not adding custom mesh offsets to NavigationMesh generation | smix8 | |
Fix GridMap not adding custom mesh offsets to NavigationMesh generation | |||
2022-05-24 | GDScript: Don't show redundant await warning on unknown types | George Marques | |
Also avoid it when the type is known to be a signal. | |||
2022-05-24 | Merge pull request #47665 from trollodel/tree_more_buttons_signals | Rémi Verschelde | |
2022-05-24 | Merge pull request #61345 from vnen/gdscript-lambda-issues | Rémi Verschelde | |
GDScript: A few fixes for lambda issues | |||
2022-05-23 | GDScript: Fix lambda captures in default argument values | George Marques | |
2022-05-23 | GDScript: Fix `if` after lambda being seen as ternary | George Marques | |
2022-05-23 | Fix typos with codespell | Rémi Verschelde | |
Using codespell 2.2-dev from current git. | |||
2022-05-23 | GDScript: Do not allow standalone lambdas | George Marques | |
They cannot be accessed in this case, so an error is shown to avoid misleading the uses, especially in case of named lambdas. | |||
2022-05-22 | Merge pull request #61017 from derammo/derammo_58121 | Rémi Verschelde | |
display of large help text in visual script |