Commit Graph

18197 Commits

Author SHA1 Message Date
23a4cffe2f Allow to add padding to ScrollBars 2025-11-11 19:21:25 -03:00
72925d756f Merge pull request #112076 from kevinlam508/custom-node-reference-duplication
Fix duplicating node references of custom node type properties
2025-11-11 16:07:53 -06:00
55f51c0045 Merge pull request #111491 from bfloch/pixel_size_precision
Remove `pixel_size` precision limit in Sprite3D
2025-11-11 16:07:50 -06:00
dedbc8b26a Merge pull request #112625 from BrotherShort/fix-tree-vertical-line
Fix tree vertical line width bug
2025-11-11 10:37:36 -06:00
8327dfa215 Merge pull request #112092 from timothyqiu/ts-nums
Move localized number formatting methods to `TranslationServer`
2025-11-10 17:47:09 -06:00
e33c423700 Merge pull request #108314 from KoBeWi/shift_in_meta
Replace repetitive meta/ctrl condition with a method
2025-11-10 17:47:08 -06:00
a627ee6c10 Merge pull request #112471 from Rudra-ravi/claude/fix-godot-official-issues-011CUrnHud9iQ4LV6FDv2hG7
Fix glow visual compatibility regression
2025-11-10 17:47:07 -06:00
d30214a612 Merge pull request #109938 from KoBeWi/fokoos_rekto
Remove meta usage in Tree
2025-11-10 17:47:04 -06:00
ddbb898af5 Merge pull request #112563 from fryingpanjoe/fpj/fix-reimport-custom-track-use-blend
Fix custom audio track blend flag on reimport
2025-11-10 17:47:03 -06:00
77cfbe9371 Merge pull request #111780 from aaronfranke/tree-double-click-not-editable
Allow double-clicking icons of non-editable Tree items
2025-11-10 17:46:58 -06:00
4f5f36c361 fix tree vertical line width bug 2025-11-11 06:51:07 +08:00
98141c3d73 Replace repetitive meta/ctrl condition with a method 2025-11-10 16:23:28 +01:00
a981863be4 Remove meta usage in Tree 2025-11-10 16:17:43 +01:00
a6db8aa621 Merge pull request #111597 from HolonProduction/code-edit-dirty-flag
CodeEdit: Use flag to recalculate characteristics
2025-11-10 08:20:22 -06:00
3d6ad3f806 Merge pull request #94929 from StamesJames/emission-shape-ring-for-2d
Add emission shape ring for CPUParticles2D
2025-11-10 08:20:16 -06:00
82e6303634 Merge pull request #111535 from kitbdev/fix-textedit-dont-select
Fix TextEdit selecting when closing popup
2025-11-10 08:20:08 -06:00
31867abdaa Merge pull request #112545 from timothyqiu/compact-menu-gutter
PopupMenu: Add theme option for merging icon and checkbox gutters
2025-11-10 08:20:02 -06:00
f81b2aa376 Merge pull request #111517 from chocola-mint/fix-#111514
Seek to beginning of section if current playback position is after its end
2025-11-10 08:19:59 -06:00
4c5f6691f0 Merge pull request #107400 from BlueCube3310/light-probe-cache
Cache lightprobe generation for lightmap baking
2025-11-10 08:19:43 -06:00
adf18ff44d Update rect after _pre_popup in popup_centered_*. 2025-11-10 11:24:37 +02:00
72d437c030 Move localized number formatting methods to TranslationServer
Co-Authored-By: Pāvels Nadtočajevs <7645683+bruvzg@users.noreply.github.com>
2025-11-10 15:01:22 +08:00
069206bc74 Fix JacobianIK to apply gradient correctly 2025-11-09 15:55:20 +09:00
e292217f36 Move the line of calling animation_finished signal to ensure stopping 2025-11-09 14:34:14 +09:00
4694ee84f6 PopupMenu: Add theme option for merging icon and checkbox gutters 2025-11-09 13:09:14 +08:00
c765e6cbb6 Fix custom audio track blend flag on reimport 2025-11-09 00:01:29 +01:00
808faa0ab0 Add instance_index option to parameters in visual shaders 2025-11-08 14:35:24 +03:00
c3747884da Add some important profiling hooks. 2025-11-08 00:08:48 +01:00
e50cf880c3 Allow tab_rmb_clicked signal to always be emitted 2025-11-07 11:10:09 -08:00
6af0c2a21c Merge pull request #110340 from bruvzg/ts_dup_r
[RTL] Use separate paragraph copy for the partially visible paragraphs.
2025-11-07 10:32:27 -06:00
3a66d88be2 Fix CPUParticle3D not randomizing 2025-11-07 17:23:40 +01:00
802eb0b1a0 Fix glow visual compatibility regression (issue #112469)
Reverts the default value of Environment.glow_hdr_threshold from 0.0
back to 1.0 to restore the expected glow appearance in existing projects.

The default was inadvertently changed from 1.0 to 0.0 in PR #110077,
which caused glow effects to render dramatically different across all
rendering methods (Forward+, Mobile, and GL Compatibility). This broke
backward compatibility with existing projects like the Kenney 3D
Platformer starter kit.

Changed files:
- scene/resources/environment.h
- servers/rendering/storage/environment_storage.h
- drivers/gles3/effects/glow.h
- drivers/gles3/rasterizer_scene_gles3.cpp
- doc/classes/Environment.xml

Setting the value back to 1.0 aligns with documented recommendations
and restores visual consistency.

Fixes #112469
2025-11-07 04:07:41 +00:00
a7bf615711 Merge pull request #112377 from timothyqiu/popup-menu-minsize
PopupMenu: Fix minimum size for items with icons
2025-11-06 08:13:15 -06:00
2f029bc7bf Fix NodeOneShot doesn't reset correctly 2025-11-06 05:51:48 +09:00
eb3d6d8cd3 Merge pull request #112446 from Ivorforce/revert-warn-rename
Revert "Add warning when node name is invalid"
2025-11-05 13:05:48 -06:00
6539819c2b Merge pull request #112371 from DeeJayLSP/treeitem-stylebox
Add custom `StyleBox` to `TreeItem`
2025-11-05 13:05:46 -06:00
3b4239d649 Merge pull request #111288 from bruvzg/move_input
[Window] Add unfiltered input handler signal for custom decorations.
2025-11-05 11:48:06 -06:00
29a1964848 Merge pull request #112402 from cabranca/skeleton-3d-remove-unused-method
Remove undefined method Skeleton3D::remove_bone
2025-11-05 11:48:03 -06:00
78096d4ce7 Revert "Add warning when node name is invalid"
This reverts commit 0d46d42f2a.
2025-11-05 18:11:43 +01:00
0d19e18b00 [RTL] Use separate paragraph copy for the partially visible paragraphs. 2025-11-05 17:51:22 +02:00
dcb40b52ac [RTL] Fix meta hover signals not emitted. 2025-11-05 12:33:45 +02:00
cb8196252b Remove undefined method 2025-11-05 00:09:07 -03:00
afd12e32ad Make AnimationLibrary serialization unuse Dictionary 2025-11-05 11:36:42 +09:00
b30b11b012 Add custom StyleBox to TreeItem 2025-11-04 22:51:37 -03:00
d2c3fdaec0 Make scrollbar margins affect minimum size 2025-11-04 17:45:37 -08:00
7a3093c373 PopupMenu: Fix minimum size for items with icons 2025-11-05 07:48:26 +08:00
a57f96110a Add option to BoneConstraint3D to make reference target allow node 2025-11-05 07:52:24 +09:00
410ed12959 Merge pull request #112352 from bruvzg/poly2d_os
Apply viewport oversampling to Polygon2D.
2025-11-04 16:32:52 -06:00
80b82af92b Merge pull request #111163 from HolonProduction/node-greater-than
Speed up `Node::is_greater_than` by avoiding `alloca`
2025-11-04 16:32:42 -06:00
2ac27b2fa0 Merge pull request #112307 from AdvanceControl/add_warn_when_renamed_node
Add warning when node name is invalid
2025-11-04 16:32:41 -06:00
3fb8961b00 Merge pull request #110120 from TokageItLab/ik-modifier-3d
Add `SkeletonModifier3D` IKs as `IKModifier3D`
2025-11-04 16:32:36 -06:00