Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-01-17 | Merge pull request #71145 from dalexeev/doc-sprite-frames | Rémi Verschelde | |
Improve `SpriteFrames` docs | |||
2023-01-16 | Fix typo and add missing docs for WINDOW_FLAG_MOUSE_PASSTHROUGH. | bruvzg | |
2023-01-16 | Merge pull request #70557 from KoBeWi/class_yeet | Rémi Verschelde | |
Move global script class cache to separate file | |||
2023-01-16 | Merge pull request #71502 from bruvzg/tooltip_clickthrough | Rémi Verschelde | |
Add `WINDOW_FLAG_MOUSE_PASSTHROUGH` flag and enabled it for tooltips. | |||
2023-01-16 | Fix scaling issue in `draw_line` and similar methods | Danil Alexeev | |
2023-01-16 | Add `WINDOW_FLAG_MOUSE_PASSTHROUGH` flag and enabled it for tooltips. Expose ↵ | bruvzg | |
`window_set_mouse_passthrough` to `Window`. | |||
2023-01-16 | Move global script class cache to separate file | kobewi | |
2023-01-16 | Merge pull request #70668 from KoBeWi/never_give_up | Rémi Verschelde | |
Retry loading addons after filesystem scan | |||
2023-01-16 | Merge pull request #70669 from KoBeWi/bruh2 | Rémi Verschelde | |
Improve ResourcePreloader description | |||
2023-01-16 | Merge pull request #71436 from TigranExe/patch-1 | Rémi Verschelde | |
Added a brief description to SkeletonProfileHumanoid | |||
2023-01-16 | Merge pull request #71461 from snoopdouglas/snoopdouglas/master | Rémi Verschelde | |
Class reference: snake_case .tscn & .gd filenames, _on_* callbacks | |||
2023-01-16 | Merge pull request #70504 from KoBeWi/the_choosen_antipattern | Rémi Verschelde | |
Add EditorUndoRedoManager singleton | |||
2023-01-16 | doc: Add a brief description to SkeletonProfileHumanoid | TigranExe | |
2023-01-16 | Merge pull request #71456 from raulsntos/dotnet/sync-plane | Rémi Verschelde | |
C#: Sync `Plane` with Core | |||
2023-01-16 | Merge pull request #71445 from raulsntos/dotnet/transforms | Rémi Verschelde | |
C#: Add missing `Transform{2D,3D}` and `Basis` constructors | |||
2023-01-16 | Merge pull request #71474 from raulsntos/plane_get_center | Rémi Verschelde | |
Rename `center` method to `get_center` in Plane. | |||
2023-01-16 | Merge pull request #70433 from Sauermann/fix-treeitem-id | Rémi Verschelde | |
Fix confusion about TreeItem.add_button ambiguity between id and index | |||
2023-01-16 | Add EditorUndoRedoManager singleton | kobewi | |
2023-01-15 | C#: Sync `Plane` with Core | Raul Santos | |
- Add `Plane(Vector3)` constructor. - Rename `IntersectRay` to `IntersectsRay`. - Rename `IntersectSegment` to `IntersectsSegment`. - Replace `Center` property with `GetCenter` method. - Add and fix documentation about the _normal_ parameter to Core and C# documentation. | |||
2023-01-15 | Rename `center` method to `get_center` in Plane. | Raul Santos | |
2023-01-15 | C#: Add missing `Transform{2D,3D}` and `Basis` constructors | Raul Santos | |
- Remove `Transform3D(Quaternion, Vector3)` constructor from C#. - Add `Transform3D(Projection)` constructor to C#. - Add documentation to the `Transform3D(Projection)` constructor in Core. - Add `Transform3D` constructor with only real_t params to C# that mirrors `Transform2D`. - Expose `Basis` constructor with only real_t params in C#. - Add `Transform2D(real_t, Vector2, real_t, Vector2)` constructor to C#. | |||
2023-01-15 | Class reference: snake_case .gd filenames, _on_* | Doug Thompson | |
This is for: https://github.com/godotengine/godot-docs/issues/6245 | |||
2023-01-14 | Update all outdated online documentation links | Yuri Sizov | |
2023-01-13 | Uppercase references to color constants in documentation | Anthony Cossins | |
2023-01-13 | Merge pull request #71235 from Calinou/doc-shader-per-instance-uniforms | Rémi Verschelde | |
Clarify the difference between uniforms and per-instance uniforms in docs | |||
2023-01-13 | Merge pull request #71137 from lyuma/remove_modification_stack_3d | Rémi Verschelde | |
Remove SkeletonModificationStack3D, and Skeleton3D api cleanup | |||
2023-01-14 | Merge pull request #71328 from reduz/button-shortcuts-no-longer-press | Yuri Sizov | |
Button shortcuts no longer "press" the Button. | |||
2023-01-13 | Clarify the difference between uniforms and per-instance uniforms in docs | Hugo Locurcio | |
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 | Button shortcuts no longer "press" the Button. | Juan Linietsky | |
* Button shortcuts were treated as generic input events on buttons. This means that to activate a button shortcut you had to press and release. * This logic is removed and now shortcuts always activate on press. * This makes the editor feel more responsive and solves problems related to this behavior. Fixes #45033 and possibly others. | |||
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 | Improve dashed line alignment and make it optional. | bruvzg | |
2023-01-13 | Merge pull request #71290 from clayjohn/normal-map-2d | Rémi Verschelde | |
Remove normal_map from MeshInstance2D and MultiMeshInstance2D | |||
2023-01-12 | Merge pull request #71289 from RandomShaper/avoid_color_flash | Clay John | |
Avoid color flash on window creation and resizing | |||
2023-01-12 | Remove normal_map from MeshInstance2D and MultiMeshInstance2D | clayjohn | |
2023-01-12 | Add framework for avoidance of color flash in new windows | Pedro J. Estébanez | |
2023-01-12 | Remove SkeletonModificationStack3D, and Skeleton3D api cleanup | Lyuma | |
Removes all 3D modification resources. SkeletonIK3D is a node and still supported. Remove deprecated Skeleton3D functionality for 4.0, so we can add it back in 4.x. Remove local_pose_override feature from Skeleton3D and BoneAttachment3D. Expose Skeleton3D::get_version() so IK scripts/extensions can cache bones. Note: This change only affects 3D. SkeletonModification2D will work as before. | |||
2023-01-12 | Merge pull request #58517 from KoBeWi/size_matters | Rémi Verschelde | |
Add expand modes to TextureRect | |||
2023-01-12 | Merge pull request #71258 from TechnoPorg/doc-editor-export-platform | Rémi Verschelde | |
Document EditorExportPlatform | |||
2023-01-12 | Add expand modes to TextureRect | kobewi | |
2023-01-12 | Merge pull request #71270 from Miltage/update-timer-docs | Rémi Verschelde | |
Improve clarity surrounding Timer's time_left variable | |||
2023-01-12 | Merge pull request #71218 from KoBeWi/unlimited_bikeshedding_lets_go | Rémi Verschelde | |
Split pause() from AnimationPlayer's stop() | |||
2023-01-12 | Merge pull request #71123 from Chaosus/vs_particle_randomness | Yuri Rubinsky | |
2023-01-12 | Improve clarity surrounding Timer's time_left variable | Robert Shenton | |
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 #70714 from Calinou/doc-os-stdin | Rémi Verschelde | |
Improve documentation for `OS.read_string_from_stdin()` | |||
2023-01-12 | Merge pull request #71250 from smix8/navigation_tweak_agent2d_4.x | Rémi Verschelde | |
Tweak NavigationAgent2D defaults |