summaryrefslogtreecommitdiff
path: root/scene
AgeCommit message (Collapse)Author
2023-02-20Fix crash when reparenting SoftBody3D with pinned pointsPrecisionRender
2023-02-20Merge pull request #73597 from ↵Rémi Verschelde
MewPurPur/add-missing-queue-redraw--oh-wait-that-barely-narrows-it-down Fix Indent/Unindent without a selection not causing a redraw
2023-02-19Fix Indent/Unindent without a selection not causing a redrawVolTer
2023-02-19Merge pull request #73585 from YuriSizov/particles-remove-damping-limitYuri Sizov
Remove visual limit for damping in CPUParticles
2023-02-19Fix ctrl+backspace crash with multicarets on the same linePaulb23
2023-02-19Remove visual limit for damping in CPUParticlesAlbin
Issue #56324 notes that you may can't set the damping property of CPUParticles2D to anything more that 100 in the editor inspector while you may set it to anything in code, this is considered a bug and changed in this commit
2023-02-19Merge pull request #73526 from YuriSizov/branded-project-llcRémi Verschelde
Add a custom icon for the `project.godot` file in the `EditorFileDialog`
2023-02-18Fix shader parameter assignJuan Linietsky
-Make sure the remap is created properly if never assigned before. Fixes #72923. Supersedes #73066.
2023-02-18Merge pull request #65353 from QbieShay/qbee/fix-billboard-nonuniform-scaleYuri Sizov
2023-02-18Merge pull request #73513 from YuriSizov/bone2d-remove-deprecated-methodsYuri Sizov
Remove deprecated methods from Bone2D
2023-02-17Add a custom icon for the `project.godot` file in the EditorFileDialogYuri Sizov
2023-02-17Merge pull request #73508 from nongvantinh/reorder-emitted-signalsYuri Sizov
Reordering emitted signals in PopupMenu
2023-02-17Remove deprecated methods from Bone2DYuri Sizov
- also add them to the project convertor
2023-02-17Reordering emitted signals in PopupMenuNong Van Tinh
2023-02-17Merge pull request #72184 from Maran23/item-list-index-out-of-boundsRémi Verschelde
ItemList: Check if the index is out bounds before accessing the internal items
2023-02-17Merge pull request #70781 from jamesmintram/jamesm/bugfix/fix-minimap-oobRémi Verschelde
Fix error spam when hovering minimap in the script editor
2023-02-17Merge pull request #70515 from stmSi/fix-hanging-audio-pitch-scaleRémi Verschelde
Fix hanging if audiostream's pitch_scale is NaN
2023-02-17Merge pull request #73470 from Sauermann/fix-touch-screen-button-emulatedYuri Sizov
Remove device-id restriction from `TouchScreenButton` input events
2023-02-17Remove unexposed ProxyTexture, mark AnimatedTexture as deprecatedRémi Verschelde
According to reduz: > [AnimatedTexture] should be removed together with ProxyTexture, its just > not efficient at all in Vulkan and causes invalidation of all descriptor > sets depending on it > it was needed mostly for animated tilemaps, but nowadays there is not a lot > of reason for it Marking AnimatedTexture as deprecated accordingly, until we reach consensus for removing it completely.
2023-02-17Merge pull request #73428 from smix8/navigation_tweak_agent3d_4.xRémi Verschelde
Tweak NavigationAgent3D defaults
2023-02-17Set RTL minimal dash size to 2.0, add invalid dash size error to the ↵bruvzg
`draw_dashed_line`.
2023-02-17Remove device-id restriction from `TouchScreenButton` input eventsMarkus Sauermann
Remove the restriction that only devices with id 0 are used for `TouchScreenButton`-Input events. This allows emulated events to be used for TouchScreenButton.
2023-02-17Merge pull request #73464 from clayjohn/VoxelGI-emissionRémi Verschelde
Only include emission when enabled in material during VoxelGI bake
2023-02-17Merge pull request #69801 from nongvantinh/fix-invalid-scene-nameRémi Verschelde
Fixed scene name can be saved as extension only
2023-02-17Merge pull request #72764 from Sauermann/fix-color-pickingRémi Verschelde
Fix Color Picking
2023-02-17Merge pull request #49102 from ANamelessGhoul/masterRémi Verschelde
Fix AnimatedTexture inconsistency when setting frame
2023-02-17Merge pull request #73444 from bruvzg/dash_checksRémi Verschelde
Add dash and step size checks to draw_dashed_line.
2023-02-17Prevent saving files with no name and only an extension.Nong Van Tinh
Fixes #69768. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
2023-02-16Only include emission when enabled in material during VoxelGI bakeclayjohn
2023-02-16Fix AnimatedTexture inconsistency when setting frameTecelli Akıntuğ
2023-02-16Fix error spam when hovering minimap in the script editorJames Mintram
2023-02-16Merge pull request #73396 from KoBeWi/sorryRémi Verschelde
Fix crash with AspectRatioContainer and TextureRect
2023-02-16Merge pull request #73426 from RandomShaper/label_strikes_againRémi Verschelde
Fix width determination of non-trimmed, non-wrapped labels
2023-02-16Add dash and step size checks to draw_dashed_line.bruvzg
2023-02-16Fix crash with AspectRatioContainer and TextureRectkobewi
2023-02-16Tweak NavigationAgent3D defaultssmix8
Tweaks default values for NavigationAgent3D to work better out of the box within a new 3D project.
2023-02-16Fix width determination of non-trimmed, non-wrapped labelsPedro J. Estébanez
In other words, exclude trimmable labels from the special logic used for non-wrapping ones, since they are not expected to dictate their width authoritatively.
2023-02-16Merge pull request #73229 from smix8/navlink_global_positions_4.xRémi Verschelde
Add NavigationLink helper functions for global positions
2023-02-16Merge pull request #73370 from timothyqiu/tiles-i18nRémi Verschelde
Add missing i18n in tiles editor
2023-02-15Merge pull request #73343 from RandomShaper/labels_are_evilRémi Verschelde
Make label sizing algorithm more robust
2023-02-15Make label sizing algorithm more robustPedro J. Estébanez
2023-02-15Merge pull request #73349 from dalexeev/fix-tab-bar-redrawYuri Sizov
Fix `TabBar` not redrawing on locale change
2023-02-15Add missing i18n in tiles editorHaoyu Qiu
2023-02-15Fix `TabBar` not redrawing on locale changeDanil Alexeev
2023-02-15Merge pull request #73293 from RedMser/rich-text-label-fixesYuri Sizov
RichTextLabel: Unexpose internal ItemType enum, improve `push_meta` docs
2023-02-15Merge pull request #73344 from MewPurPur/yeet-empty-line-error-spamRémi Verschelde
Fix autocomplete persisting at the beginning of a line and throwing errors
2023-02-15Merge pull request #73262 from ↵Rémi Verschelde
chutchinson/bug/73201-immediate-mesh-create-outline-crash Prevent crash in ImmediateMesh.create_outline
2023-02-15Fix autocomplete persisting at the beginning of a lineVolTer
2023-02-14Prevent crash in ImmediateMesh.create_outline by ensuringChris Hutchinson
that when no indices are specified, the number of vertices is at least a factor of 3. Fixes #73201
2023-02-14Add NavigationLink helper functions for global positionssmix8
Adds helper functions to set the links start and end position with global positions or get them as global positions. Adds global start and end position for the navigation link to the 'link_reached' signal of NavigationAgent. That signal gets emitted when a navigation link waypoint is reached. Requires that 'owner' meta data is enabled on the NavigationAgent.