Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-09-15 | Merge pull request #65152 from s77rt/fix-56343 | Rémi Verschelde | |
Fix GDScript preload fails in standalone build unless files are present in directory | |||
2022-09-15 | Merge pull request #65823 from raulsntos/dotnet/signal-docs | Ignacio Roldán Etcheverry | |
C#: Move signal documentation to the event | |||
2022-09-15 | Fix GDScript `preload` fails in standalone build unless files are present in ↵ | Abdelhafidh Belalia | |
directory Fixes #56343. | |||
2022-09-15 | C#: Move signal documentation to the event | Raul Santos | |
Move signal documentation from the delegate to the event and also deprecate the event if the signal is deprecated. | |||
2022-09-15 | Fix NuGet fallback folder packages | Raul Santos | |
- Creates a `Godot.Offline.Config` file to configurate NuGet with Godot's fallback folder. This is easier because now we can assume we can override the entire file since user config will likely be in the default `NuGet.Config` file or an additional `*.config` file. - Ensure the NuGet fallback folder is created at the same time it is added to the NuGet configuration so future builds don't fail. - Add `GodotSharp` and `GodotSharpEditor` packages to the fallback folder. - Add `.nupkg.metadata` file to packages in fallback folder. - Refer to `Godot.SourceGenerators` using the specific non-floating version since floating versions don't seem to work with fallbackPackageFolders. | |||
2022-09-14 | Merge pull request #65788 from bruvzg/macos_fix_dotnet_detection | Rémi Verschelde | |
[macOS, .NET] Fix dotnet binary detection. | |||
2022-09-14 | Merge pull request #65775 from smix8/navigation_baking_disabled_shapes_4.x | Rémi Verschelde | |
Exclude disabled StaticBody CollisionShapes from Navigationmesh baking | |||
2022-09-14 | [macOS, .NET] Fix dotnet binary detection. | bruvzg | |
2022-09-14 | Exclude disabled CollisionShapes from Navigationmesh baking | smix8 | |
Excludes disabled CollisionShapes from the geometry parsing for the NavigationMesh baking. | |||
2022-09-13 | do not load PackedScene from spawner until instantiating | Nathan Franke | |
2022-09-13 | [WebRTC] Expose more of the WebRTC API. | Fabio Alessandrelli | |
Add get_gathering_state() returning the iceGatheringState of the connection. Add get_signaling_state() returning the signalingState of the connection. Improve JS library. | |||
2022-09-13 | Merge pull request #65643 from voylin/fix_recurring_check_in_gdscript_cache.cpp | Rémi Verschelde | |
2022-09-13 | Merge pull request #65611 from Sarfraz-droid/Issue65602 | Rémi Verschelde | |
2022-09-13 | Merge pull request #65637 from Jummit/assert-example | Rémi Verschelde | |
2022-09-12 | Fix some errors affecting the Web editor | Rémi Verschelde | |
- Don't warn about minimized/maximized modes not being available. - Blender and FBX export both depend on running thirdparty applications, which can't be done (easily at least) for Web and Android editors. - Editor theme complained about not being able to retrieve texture data for an icon. It was only used once so instead of flipping at runtime, let's just add a flipped icon. Part of #65702. | |||
2022-09-12 | [Multiplayer] Fix crash in spawner get_spawnable_scene. | Fabio Alessandrelli | |
2022-09-12 | Fix last_modified_time on scripts | Yuri Rubinsky | |
2022-09-11 | Fix for recurring check in gdscript_cach.cpp | Voylin | |
2022-09-11 | Remove outdated assert example | Jummit | |
2022-09-10 | Fix gltf 8 bone weights condition to check for the second joint array | Sarfraz | |
size. | |||
2022-09-09 | Merge pull request #64938 from YuriSizov/editor-scaled-icons | Rémi Verschelde | |
2022-09-09 | Merge pull request #65533 from neikeq/issue-65522 | Rémi Verschelde | |
2022-09-09 | Merge pull request #64373 from YeldhamDev/edscale_likes_them_floaty | Rémi Verschelde | |
2022-09-08 | Fix MacOS compiler flags in .NET module | Raul Santos | |
2022-09-08 | C#: Fix module builds for Windows 32-bit with mingw-w64 | Ignacio Roldán Etcheverry | |
The lambda was giving issues, so I re-wrote it as a static function. | |||
2022-09-08 | Make `Vector2i` values paired with `EDSCALE` be just `Vector2` | Michael Alexsander | |
2022-09-08 | Merge pull request #65241 from bruvzg/no_keymap_ambiguity | Rémi Verschelde | |
Fix key mapping changes when moving from macOS to other platform. | |||
2022-09-08 | Merge pull request #65460 from Faless/net/4.x_ssl_to_tls_more | Rémi Verschelde | |
[Net] Rename "ssl" references to "tls" in methods and members. | |||
2022-09-08 | Merge pull request #64193 from smix8/navigation_gridmap_navmap_change_4.x | Rémi Verschelde | |
Add GridMap function to change navigation map for baked navigation regions | |||
2022-09-08 | Add GridMap function to change navigation map for baked navigation regions | smix8 | |
Adds function to change the navigation map for baked navigation regions. Before all cells with a baked navigation mesh were locked to the default navigation map of the world resource. | |||
2022-09-08 | [Net] Rename "ssl" references to "tls" in methods and members. | Fabio Alessandrelli | |
2022-09-07 | Allow images to be imported "for editor use" and respect editor settings | Yuri Sizov | |
2022-09-07 | Fix key mapping changes when moving from macOS to other platform | bruvzg | |
Removes separate `Command` key (use `Meta` instead). Adds an event flag to automatically remap `Command` <-> `Control` (cannot be set alongside `Control` or `Meta`). | |||
2022-09-07 | Remove / Replace old Navigation Debug Visualization | smix8 | |
- removes / replaces leftovers from old navigation debug code - cleanes SceneTree and ProjectSettings from old navigation debug | |||
2022-09-07 | Merge pull request #65438 from neikeq/replace-libnethost-dependency | Rémi Verschelde | |
Replace libnethost dependency to find hostfxr | |||
2022-09-07 | C#: Replace libnethost dependency to find hostfxr | Ignacio Roldán Etcheverry | |
We want to replace libnethost as it gives us issues with some compilers. Our implementation tries to mimic libnethost's hostfxr_resolver search logic. We try to use the same function names for easier comparing in case we need to update this in the future. | |||
2022-09-07 | Merge pull request #65447 from Faless/net/4.x_ssl_to_tls | Rémi Verschelde | |
[Net] Rename StreamPeerSSL to StreamPeerTLS. | |||
2022-09-07 | Merge pull request #65449 from ↵ | Rémi Verschelde | |
YuriSizov/editor-main-control-screen-container-node Rename `EditorInterface.get_editor_main_control` to `get_editor_main_screen` | |||
2022-09-07 | Merge pull request #65437 from YuriSizov/theme-gui-renames | Rémi Verschelde | |
Improve naming of theme properties throughout GUI code | |||
2022-09-07 | Merge pull request #65197 from Mickeon/rename-connect-one-shot | Rémi Verschelde | |
Rename CONNECT_ONESHOT to CONNECT_ONE_SHOT | |||
2022-09-07 | [Net] Rename StreamPeerSSL to StreamPeerTLS. | Fabio Alessandrelli | |
SSL has been deprectated almost 10 years ago. | |||
2022-09-07 | Rename EditorInterface.get_editor_main_control to get_editor_main_screen | Yuri Sizov | |
2022-09-06 | Improve naming of theme properties throughout GUI code | Yuri Sizov | |
Rename ItemList's bg -> panel Rename ItemList's bg_focus -> focus Rename ProgressBar's bg -> background Rename ProgressBar's fg -> fill Rename Tree's bg -> panel Rename Tree's bg_focus -> focus Rename ScrollContainer's bg -> panel Rename FileDialog's *_icon_modulate -> *_icon_color Rename FileDialog's files_disabled -> file_disabled_color Rename CheckButton's on/off -> checked/unchecked Rename check_v_adjust -> check_v_offset | |||
2022-09-06 | Merge pull request #65433 from neikeq/fix-mustbevariant-omittedtypearg | Rémi Verschelde | |
2022-09-06 | Rename CONNECT_ONESHOT TO CONNECT_ONE_SHOT | Micky | |
For consistency. Every other exposed `one_shot` is spaced out like this. | |||
2022-09-06 | C#: Make MustBeVariantAnalyzer ignore OmittedTypeArgument | Ignacio Roldán Etcheverry | |
Fixes assertion error in the analyzer. | |||
2022-09-06 | Merge pull request #65410 from magian1127/4.0UnifiedMemberName | Ignacio Roldán Etcheverry | |
C# Modify the MemberName generated for the user script | |||
2022-09-06 | Merge pull request #64661 from Mickeon/rename-tilemap-world | Rémi Verschelde | |
Rename TileMap/GridMap.`world_to_map` and opposite to `local_to_map` | |||
2022-09-06 | Merge pull request #64417 from aaronfranke/has-space | Rémi Verschelde | |
Replace AABB/Rect2/Rect2i has_no_* methods with has_* methods | |||
2022-09-06 | C# Modify the MemberName generated for the user script | Magian | |