summaryrefslogtreecommitdiffstats
path: root/scene
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix backspace always unfolding previous lineMrPersonDev2024-09-161-1/+1
| | | | (cherry picked from commit 2860b99077fff229927067948bb731cb61464317)
* Fix bone2d scalingSilc Lizard (Tokage) Renew2024-09-161-3/+1
| | | | | Co-authored-by: Thiago Lages de Alencar <thiagola92@gmail.com> (cherry picked from commit de558123bf557ba563e3dcd537585af08471817f)
* Fix Skeleton2D.{_set|_get} always returning truekleonc2024-09-162-28/+20
| | | | (cherry picked from commit 115cd47fd637c915d0db57389f433461639bbd3f)
* Fix Parallax2D repeats being not relative to its transformkleonc2024-09-161-7/+1
| | | | (cherry picked from commit 1bd8372813d8a329188c05e8cc8c0c66f60b1735)
* Fix node.duplicate, return nullptr if this operation fails.Radiant2024-09-161-1/+5
| | | | (cherry picked from commit 70f41e414eefd21ecbe98d429c5fc82b4c30ce8a)
* Add `stop_callable` to `AudioStreamPlayerInternal`Kusok2024-09-165-14/+16
| | | | (cherry picked from commit 8c7dd3cb61b7d134b49c584fb17acd30a4d42fbe)
* Fix SoftBody3D pinned points breaking when reloading sceneJiří Švejda2024-09-161-1/+7
| | | | (cherry picked from commit bde8c5977b5b3f31619af182ffc521bbec98df78)
* Fix TileAtlasView bounds checks for transposed tileskleonc2024-09-162-1/+17
| | | | (cherry picked from commit 6895f6f8ccab0b22dda5a6151399603cdd7fd060)
* Change "Node3D" to "Spatial" in VisualShader resourcetetrapod002024-09-161-9/+9
| | | | (cherry picked from commit b9876b626d431b1061111243376a4b0e07006d26)
* Add NavigationLink function to change navigation mapsmix82024-09-164-71/+190
| | | | | | Adds NavigationLink function to change navigation map. (cherry picked from commit e6ff4e56e30a93b1d25b90982ac3b344e228f4a9)
* Fix `TextServer::shaped_text_*_character_pos` for the first character of ↵bruvzg2024-09-161-1/+9
| | | | | | wrapped string. Allow starting/ending RTL selection before line start. (cherry picked from commit 932acce8f290fe2231e81d685077af084666202e)
* [BMFont] Fix importing fonts with `Match char height` enabled.bruvzg2024-09-161-3/+6
| | | | (cherry picked from commit e7f215c2c401944892501c158188301a09622842)
* Fix tooltip content being cut off at some display scalesaaronp642024-09-161-0/+1
| | | | | | | | When getting the minimum size for a tooltip, we get the value as a Vector2. Window::set_size() takes a Vector2i, so this size was getting truncated. At certain display scales, this could be enough to cut off part of the tooltip. Updated to call Vector2::ceil() to round up before calling Window::set_size() Fixes #91958 (cherry picked from commit ca8e3d4923f94eebf8d8b16a8625d1de6df32768)
* Fix LightmapGI not taking environment sky rotation into account when bakingHugo Locurcio2024-09-161-0/+1
| | | | | | | | The sky rotation now affects the baked environment lighting as it should, making it match how real-time ambient light rendering works. Co-authored-by: Per Melin <git@melin.net> (cherry picked from commit 661cf1f3515ab53c002d2824876dd955b06e9e50)
* fix to ensure generated light probes do not get placed too close to manual ↵Kyle Appelgate2024-09-161-1/+1
| | | | | | light probes (cherry picked from commit 97205ea5b8126c4f1f613288d7bd366e6155eeee)
* Fix incorrect warning on SkeletonModifierSilc Lizard (Tokage) Renew2024-09-161-1/+1
| | | | (cherry picked from commit 4727c4f783573c6c7590bfdf4c8d52d6dca485b2)
* XRNode - fix visibility issueBastiaan Olij2024-08-292-1/+21
|
* Stop popup release timeout on click.bruvzg2024-08-121-0/+1
|
* Merge pull request #95377 from ↵Rémi Verschelde2024-08-122-7/+1
|\ | | | | | | | | | | raulsntos/gdextension/expose-property-accessors/Animation Make `Animation::capture_included` read-only
| * Make `Animation::capture_included` read-onlyRaul Santos2024-08-102-7/+1
| | | | | | | | | | | | The `PROPERTY_USAGE_READ_ONLY` flag only makes the property read-only in the inspector, but the property also has the `PROPERTY_USAGE_NO_EDITOR` flag which means it won't show up in the inspector. So it does nothing, while still making it editable from scripting. To make it read-only for scripting too, this PR removes the setter from the `PropertyInfo`. And since the `set_capture_included` method is now unused, it was also removed.
* | AudioStreamPolyphonic: Implement stopping with sample playbackRémi Verschelde2024-08-091-0/+4
|/ | | | Fixes #94724.
* Merge pull request #95239 from AThousandShips/skeleton_internal_fixRémi Verschelde2024-08-071-1/+1
|\ | | | | | | Make `Skeleton3D` bone simulator an internal child
| * Make `Skeleton3D` bone simulator an internal childA Thousand Ships2024-08-071-1/+1
| |
* | Merge pull request #95232 from bruvzg/popup_time_upRémi Verschelde2024-08-071-1/+2
|\ \ | | | | | | | | | [PopupMenu] Increase mouse button release timeout and reset it from `post_popup`.
| * | [PopupMenu] Increase mouse button release timeout and reset it from ↵bruvzg2024-08-071-1/+2
| |/ | | | | | | `post_popup`.
* / Document converting a TileMap node to TileMapLayer using the editorHugo Locurcio2024-08-071-0/+2
|/
* Merge pull request #95122 from kleonc/tab_bar_clear_close_button_rectRémi Verschelde2024-08-061-0/+2
|\ | | | | | | Clear `TabBar` tab close button's rect after it's hidden
| * Clear TabBar tab close button's rect after it's hiddenkleonc2024-08-041-0/+2
| |
* | Merge pull request #95083 from bruvzg/base_font_loopsRémi Verschelde2024-08-062-6/+26
|\ \ | | | | | | | | | [Font] Add check for cyclic base font dependencies.
| * | [Font] Add check for cyclic base font dependencies.bruvzg2024-08-032-6/+26
| |/
* | Merge pull request #95059 from Geometror/fix-graphedit-port-snapping-againRémi Verschelde2024-08-061-7/+7
|\ \ | | | | | | | | | Fix GraphEdit port snapping in certain edge cases
| * | Fix GraphEdit port snapping in certain edge casesHendrik Brucker2024-08-021-7/+7
| |/
* / Snap current position to the edge on animation finishedSilc Lizard (Tokage) Renew2024-08-012-1/+5
|/
* Merge pull request #94931 from KoBeWi/1_window_1_hackRémi Verschelde2024-08-011-8/+12
|\ | | | | | | Use legacy color picking in single window mode
| * Use legacy color picking in single window modekobewi2024-07-291-8/+12
| |
* | Fix update mouse cursor state wrong mouse positionkit2024-07-311-1/+1
| |
* | Merge pull request #94810 from maidopi-usagi/graphedit_signal_fixRémi Verschelde2024-07-301-0/+4
|\ \ | |/ |/| | | [GraphEdit] Correctly disconnect signal to `connection_layer`
| * Fix leaked signal connection to connection_layer.maidopi-usagi2024-07-271-0/+4
| |
* | Merge pull request #94848 from kitbdev/fix-placeholder-fit-contentRémi Verschelde2024-07-292-4/+9
|\ \ | | | | | | | | | Fix TextEdit placeholder fit content height
| * | Fix TextEdit placeholder fit content heightkit2024-07-272-4/+9
| | |
* | | Merge pull request #94859 from TokageItLab/unstorage-node-time-infoRémi Verschelde2024-07-281-3/+3
|\ \ \ | | | | | | | | | | | | Make NodeTimeInfo be not stored in tscn to prevent AnimationTree version control contamination
| * | | Make NodeTimeInfo be not stored in tscnSilc Lizard (Tokage) Renew2024-07-281-3/+3
| |/ /
* | | Merge pull request #94858 from TokageItLab/early-break-loop-at-endRémi Verschelde2024-07-284-13/+9
|\ \ \ | | | | | | | | | | | | Determine `break_loop_at_end` 1 frame earlier using prediction by delta
| * | | Determine break_loop_at_end 1 frame earlier using prediction by deltaSilc Lizard (Tokage) Renew2024-07-284-13/+9
| |/ /
* / / Fix TextEdit scroll properties editor hint suffixkit2024-07-261-2/+2
|/ /
* | Merge pull request #94706 from alvinhochun/window-set-transient-parent-on-createRémi Verschelde2024-07-261-11/+1
|\ \ | | | | | | | | | Pass window exclusive and transient properties for subwindow creation
| * | Pass window exclusive and transient properties for subwindow creationAlvin Wong2024-07-251-11/+1
| |/ | | | | | | | | | | On Windows this allows to avoid having to change the owner of the window after it has been created, which in rare circumstances may cause the window to bug out.
* | Fix processed_hashes type to Animation::TypeHash from intSilc Lizard (Tokage) Renew2024-07-251-1/+1
| |
* | Merge pull request #94716 from TokageItLab/fix-total-weightRémi Verschelde2024-07-251-7/+6
|\ \ | | | | | | | | | Fix total weight calculation to separate track types
| * | Fix total weight calculation to separate track typesSilc Lizard (Tokage) Renew2024-07-251-7/+6
| |/