Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-01-15 | C#: Replace `Rotation` and `Scale` properties with get methods | Raul Santos | |
- Replace `Rotation` property with `GetRotation` method in `Transform2D`. - Replace `Scale` property with `GetScale` method in `Transform2D`. - Replace `Scale` property with `GetScale` method in `Basis`. Core does not expose set methods. | |||
2023-01-15 | Merge pull request #71374 from ↵ | Rémi Verschelde | |
raulsntos/dotnet/remove-spherical_interpolate_with C#: Remove `SphericalInterpolateWith` from Transform3D | |||
2023-01-15 | Merge pull request #71423 from ↵ | Rémi Verschelde | |
raulsntos/dotnet/intersects-without-include_borders C#: Remove `includeBorders` parameter from `Rect2i.Intersects` and `AABB.Intersects` | |||
2023-01-15 | Merge pull request #71424 from raulsntos/dotnet/sync-basis | Rémi Verschelde | |
C#: Sync `Basis` with Core | |||
2023-01-14 | C#: Sync `Basis` with Core | Raul Santos | |
- Remove `GetOrthogonalIndex` method (moved to `GridMap`). - Remove `GetRow` and `SetRow` methods. | |||
2023-01-14 | Update all outdated online documentation links | Yuri Sizov | |
2023-01-14 | Fix GDScript script templates to use a PascalCase style for `_CLASS_` | Yuri Rubinsky | |
2023-01-14 | C#: Remove `includeBorders` parameter from `Rect2i.Intersects` and ↵ | Raul Santos | |
`AABB.Intersects` | |||
2023-01-14 | C#: Remove `SphericalInterpolateWith` from Transform3D | Raul Santos | |
2023-01-13 | Merge pull request #71339 from raulsntos/dotnet/is_finite | Yuri Sizov | |
Add `IsFinite` to C# Variants | |||
2023-01-13 | Merge pull request #71343 from raulsntos/dotnet/is_zero_approx | Yuri Sizov | |
Add `IsZeroApprox` to C# vectors | |||
2023-01-13 | Add `IsZeroApprox` to C# vectors | Raul Santos | |
2023-01-13 | Merge pull request #71325 from reduz/refactor-project-setting-overrides | Rémi Verschelde | |
Refactor ProjectSetting overrides | |||
2023-01-13 | Merge pull request #71329 from vnen/gdscript-fix-enum-value-resolution | Rémi Verschelde | |
GDScript: Fix infinite recursion in resolution of enum values | |||
2023-01-13 | Merge pull request #70540 from vaartis/multiline-arrays-dictionaries | Rémi Verschelde | |
Implement export_multiline support for Array[String] and Dictionary | |||
2023-01-13 | Add `IsFinite` to C# Variants | Raul Santos | |
2023-01-13 | Refactor ProjectSetting overrides | Juan Linietsky | |
* Overrides no longer happen for set/get. * They must be checked with a new function: `ProjectSettings::get_setting_with_override()`. * GLOBAL_DEF/GLOBAL_GET updated to use this This change solves many problems: * General confusion about getting the actual or overriden setting. * Feature tags available after settings are loaded were being ignored, they are now considered. * Hacks required for the Project Settings editor to work. Fixes #64100. Fixes #64014. Fixes #61908. | |||
2023-01-13 | GDScript: Fix infinite recursion in resolution of enum values | George Marques | |
2023-01-12 | Merge pull request #70904 from huangjiaminhhh/master | Rémi Verschelde | |
Fix for navmesh baking when parsing StaticBody colliders | |||
2023-01-12 | Merge pull request #71247 from rsjtdrjgfuzkfg/etcpak | Rémi Verschelde | |
etcpak: Fix ETCPAK_TYPE_ETC2_RA_AS_RG | |||
2023-01-12 | Merge pull request #70733 from vonagam/fix-assigning-untyped | Rémi Verschelde | |
GDScript: Fix some issues with assignments that involve untyped things | |||
2023-01-12 | Merge pull request #71197 from adamscott/add-default-virtual-path-gdscript | Rémi Verschelde | |
Add default virtual `gdscript://` path to `GDScript` instances | |||
2023-01-12 | Merge pull request #70700 from vonagam/fix-abstract-extends | Rémi Verschelde | |
GDScript: Fix extending abstract classes, forbid their construction | |||
2023-01-12 | GDScript: Fix extending abstract classes, forbid their construction | Dmitrii Maganov | |
2023-01-12 | Add default virtual `gdscript://` path to `GDScript` instances | Adam Scott | |
2023-01-12 | GDScript: Fix some issues with assignments that involve untyped things | Dmitrii Maganov | |
2023-01-12 | Merge pull request #70899 from adamscott/fix-vector-inf | Rémi Verschelde | |
Fix parse error using Vector{2,3,4}.INF | |||
2023-01-12 | GDScript: Fix getting type from PropertyInfo for Variant arguments | Dmitrii Maganov | |
2023-01-12 | Merge pull request #70987 from vonagam/fix-parameter-conversion-assign | George Marques | |
2023-01-12 | Merge pull request #70713 from vonagam/fix-unnamed-enum-outer-conflicts | George Marques | |
2023-01-12 | GDScript: Fix small inconsistencies with resolve_datatype | Dmitrii Maganov | |
2023-01-12 | Merge pull request #70731 from smix8/navigationserver_performance_monitor_4.x | Rémi Verschelde | |
Add NavigationServer Performance Monitor | |||
2023-01-12 | Merge pull request #71224 from rsjtdrjgfuzkfg/openxr-opengl | Rémi Verschelde | |
OpenXR: Do not use SRGB swapchains with OpenGL | |||
2023-01-12 | Merge pull request #71034 from rsjtdrjgfuzkfg/openxr-android-warning | Rémi Verschelde | |
OpenXR: Fix android loader extension detection | |||
2023-01-12 | Merge pull request #71228 from vnen/gdscript-fix-nil-address-crash | Rémi Verschelde | |
GDScript: Fix temp values being written without proper clear | |||
2023-01-11 | etcpak: Fix ETCPAK_TYPE_ETC2_RA_AS_RG | rsjtdrjgfuzkfg | |
This commit fixes texture compression via ETCPAK_TYPE_ETC2_RA_AS_RG, switching to the right color channels and using the right compression method. Textures imported with previous versions need to be re-imported in order to render correctly. | |||
2023-01-11 | GDScript: Fix temp values being written without proper clear | George Marques | |
Temporary values in the stack were not being properly cleared when the return value of calls were discarded, which can cause memory issues especially for reference types like PackedByteArray. | |||
2023-01-11 | Merge pull request #71168 from guilleatm/master | Yuri Sizov | |
Improve description of `GetNodeOrDefault` in C# API | |||
2023-01-11 | OpenXR: Do not use SRGB swapchains with OpenGL | rsjtdrjgfuzkfg | |
This commit removes SRGB swapchain options for use with OpenGL, to avoid the hardware doing an additional SRGB conversion and thus causing colors to differ from other rendering paths. | |||
2023-01-11 | Improve description of `GetNodeOrDefault` in C# API | Guillermo | |
Indenting with spaces and added a line break Co-authored-by: Raul Santos <raulsntos@gmail.com> | |||
2023-01-11 | OpenXR: Fix initialization warning on Android | rsjtdrjgfuzkfg | |
This commit adds proper checking for XR_KHR_loader_init support and fixes the warning regarding missing extensions on Android to only appear if neither XR_KHR_loader_init nor XR_KHR_loader_init_android are supported by the runtime. | |||
2023-01-11 | Merge pull request #70167 from rsjtdrjgfuzkfg/pico | Rémi Verschelde | |
OpenXR: Add Pico controller profile | |||
2023-01-11 | Merge pull request #71127 from reduz/drag-forward-to-callables | Rémi Verschelde | |
Change set_drag_forwarding() to use callables. | |||
2023-01-11 | Merge pull request #70595 from adamscott/add-gdscript-editorconfig | Rémi Verschelde | |
Add GDScript `.editorconfig` rules | |||
2023-01-10 | GDScript: Fix use of conversion assign for variant values | George Marques | |
2023-01-10 | Add GDScript `.editorconfig` rules | Adam Scott | |
- Uniformize `.gd` unit test files indentation to tabs (where needed) | |||
2023-01-10 | Change set_drag_forwarding() to use callables. | Juan Linietsky | |
* This solution is much cleaner than the one in 3.x thanks to the use of callables. * Works without issues in any language (no need to worry about camel or snake case). * Editor code uses a compatibility function (too much work to redo). Fixes #59899 | |||
2023-01-10 | Merge pull request #71140 from vonagam/fix-const-index-subscript-type | Rémi Verschelde | |
GDScript: Fix type for index subscript on constant | |||
2023-01-10 | GDScript: Fix type for index subscript on constant | Dmitrii Maganov | |
2023-01-09 | Fix GDScript base and outer classes, signals and functions lookup order | Adam Scott | |
- Add outer class lookup test - Add signal lookup test Co-authored-by: Dmitrii Maganov <vonagam@gmail.com> |