Rémi Verschelde
0550abf225
Merge pull request #88474 from MajorMcDoom/text-editor-zoom
...
Improve text editor status bar and zooming UX
2024-02-22 11:23:07 +01:00
Rémi Verschelde
7c3c90a3e4
Merge pull request #87778 from aaronfranke/callable-bind-const
...
Make Callable `bind` method const
2024-02-22 11:23:03 +01:00
Rémi Verschelde
7359ec7a57
Merge pull request #87352 from Alex2782/fix_opengl_es3
...
Fix Compatibility Rendering (GLES3) on old and low budget devices.
2024-02-22 11:23:00 +01:00
Rémi Verschelde
efa4d0aabf
Merge pull request #86321 from jsjtxietian/fix-blendnode-crash
...
Fix `blend_node` crash with invalid AnimationNode reference
2024-02-22 11:22:56 +01:00
Rémi Verschelde
0e704ff682
Merge pull request #84275 from smix8/navmap_iteration_id
...
Add function to get navigation map iteration id from NavigationServer
2024-02-22 11:22:52 +01:00
Rémi Verschelde
e8758a0b5e
Merge pull request #79185 from aaronfranke/reg-phys-3d
...
Disable registering 3D physics types when 3D is disabled
2024-02-22 11:22:49 +01:00
bruvzg
00480fc818
[Button] Add autowrap feature.
2024-02-22 12:11:58 +02:00
Aaron Franke
eb019e243f
Disable registering 3D physics types when 3D is disabled
2024-02-22 03:05:17 -06:00
smix8
313c1d1100
Add function to get navigation map iteration id from NavigationServer
...
Adds function to get navigation map iteration id from NavigationServer.
2024-02-22 09:45:49 +01:00
Aaron Franke
1a6cabc0bf
Make Callable bind method const
2024-02-22 00:14:02 -06:00
jsjtxietian
65c8af53a1
Fix blend_node crash with invalid p_node
2024-02-22 12:56:21 +08:00
jsjtxietian
3525972bc7
Fix set_item_submenu
infinite recursion crash
2024-02-22 12:37:50 +08:00
Zi Ye
9281c441f6
Improved text editor status bar and zooming UX.
2024-02-21 17:33:16 -06:00
Alexander Hartmann
e17cecf54a
Fix Compatibility Rendering (GLES3) on old and low budget devices.
...
Co-Authored-By: joined72 <19651914+joined72@users.noreply.github.com>
2024-02-22 00:24:08 +01:00
clayjohn
2657593462
Use barriers between all blur passes with SSAO and SSIL
2024-02-21 14:35:20 -08:00
kobewi
3a8fdc0bac
Fix 3D editor project settings update
2024-02-21 20:20:52 +01:00
Michael Alexsander
584a6aeeb7
Revert "Fix NOTIFICATION_WM_SIZE_CHANGED
firing if the size hasn't changed"
...
This reverts commit 957378a69e
, reversing
changes made to 0d88840e81
.
2024-02-21 15:37:53 -03:00
Rémi Verschelde
16d61427ca
Merge pull request #88633 from dsnopek/opengl-android-fog-fix
...
Fix OpenGL on Android after adding optional depth fog
2024-02-21 18:44:57 +01:00
ajreckof
7f7d253e53
Dictionary Editor : keep the type of the last added item.
2024-02-21 17:44:05 +01:00
SaNeOr
3122b368c0
Additional docs: c# mainloop needs to be registered in the global class
2024-02-22 00:40:26 +08:00
David Snopek
1e67de5e0c
Fix OpenGL on Android after adding optional depth fog
2024-02-21 09:54:38 -06:00
Rémi Verschelde
846d075a2f
i18n: Sync translations with Weblate
...
First sync with the 4.3 changes.
2024-02-21 15:32:56 +01:00
Yevhen Babiichuk (DustDFG)
c4a59b26f2
Clarify that is_pixel_opaque
function gets position in local coordinates
...
Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com>
2024-02-21 16:23:21 +02:00
Rémi Verschelde
c6d091e0f3
Merge pull request #87253 from van800/van800/analyser
...
Provide a roslyn analyzers corresponding to the GD0001 and GD0002
2024-02-21 15:22:54 +01:00
Rémi Verschelde
5502a82824
Merge pull request #86964 from akien-mga/scons-fix-CCFLAGS-cmdline-overrides
...
SCons: Fix `CCFLAGS`, `LINKFLAGS`, etc. command line overrides
2024-02-21 15:22:50 +01:00
Rémi Verschelde
48a1a78390
Merge pull request #86260 from Faless/mp/fix_2way_auth
...
[MP] Fix auth not waiting for confirmation in some cases
2024-02-21 15:22:46 +01:00
Rémi Verschelde
14a05f0e84
Merge pull request #84584 from mutantbob/capture-doc
...
Add details about `AudioEffectCapture.clear_buffer()` and `get_buffer()`
2024-02-21 15:22:39 +01:00
Rémi Verschelde
6532fb5f8e
Merge pull request #84268 from SaracenOne/improve_ap_readonly_rules
...
Make AnimationPlayerEditor read-only edit rules more permissive.
2024-02-21 15:22:35 +01:00
Dario
5e59c941c9
Remove tracking logic for input attachments as it's not necessary.
2024-02-21 11:18:10 -03:00
Saracen
98d9c9c573
Make AnimationPlayerEditor read-only edit rules more permissive.
2024-02-21 15:17:56 +01:00
Florian Grabmeier
02faccd14f
Remove duplicate reference of CUSTOM_ARRAY_RBGA8_URNOM in docs
2024-02-21 13:54:31 +01:00
Gilles Roudière
33485e654e
Fixes a memory leak with TileMap runtime updates
2024-02-21 13:18:21 +01:00
风青山
5de496d3b0
Add a h_separation
between icons in CheckButton
/CheckBox
...
Previously, the `h_separation` between internal elements and custom elements
was added when `text` was not empty. That is, this `h_separation` does not
exist when there is a valid custom `icon` but `text` is empty.
Now, the `h_separation` between the internal element and the custom element
is added when the internal element and any custom element exist (both width
are greater than `0`).
2024-02-21 17:53:07 +08:00
Pedro J. Estébanez
91f0a65fc9
Rework viewport capture in preview generation
2024-02-21 10:44:21 +01:00
Ivan Shakhov
00dc19585b
provide analyser corresponding to the GD0001 and GD0002, add ClassPartialModifierAnalyzerFix, and tests
...
Co-authored-by: Raul Santos <raulsntos@gmail.com>
Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com>
2024-02-21 12:35:28 +03:00
Rémi Verschelde
04c71d943f
Merge pull request #88573 from Arthas92t/master
...
Fix shader cache with transform feedback on some Android devices
2024-02-21 08:57:32 +01:00
Rémi Verschelde
aeaec000fc
Merge pull request #88495 from paulloz/dotnet/test-and-fix-exports-diagnostics
...
[.NET] Test and fix exports diagnostics
2024-02-21 07:43:08 +01:00
Rémi Verschelde
e91438c986
Merge pull request #88612 from BastiaanOlij/gles_glow_factor
...
Change glow calculation back to max(r,g,b)
2024-02-21 07:42:47 +01:00
Bastiaan Olij
c2a4657a70
Change glow calculation back to max(r,g,b)
2024-02-21 11:33:10 +11:00
ArthasMenethil
d31d3e503e
Fix shader cache with transform feedback on some android devices
2024-02-21 07:31:40 +07:00
Rémi Verschelde
652438a395
Merge pull request #87360 from BastiaanOlij/gles_glow
...
Implement glow/bloom on compatibility renderer
2024-02-20 23:59:48 +01:00
Rémi Verschelde
00f6c97610
Merge pull request #80343 from raulsntos/dotnet/warnings/RS2008
...
C#: Add analyzer release tracking
2024-02-20 23:59:39 +01:00
Rémi Verschelde
292f4c7f97
Merge pull request #80214 from BastiaanOlij/rendering_effect
...
Implement hooks into renderer
2024-02-20 23:59:27 +01:00
Rémi Verschelde
dc2d1e3f47
Merge pull request #79452 from /ysort-update-first-item-position
2024-02-20 23:59:17 +01:00
A Thousand Ships
a56c03d495
Fix error spam when adding tabs to TabBar
without deselect
...
`current` was allowed to be `-1` when deselection was disabled, causing
errors in other methods when updating the size.
2024-02-20 23:38:20 +01:00
kit
eb6ca91ba6
Extract BottomPanel from EditorNode
2024-02-20 15:09:07 -05:00
Rémi Verschelde
1aab6e96b9
Merge pull request #87133 from Repiteo/dotnet/enforce-globalization-rules
...
C#: Enforce globalization code quality rules
2024-02-20 20:04:30 +01:00
Rémi Verschelde
73d502fbc1
Merge pull request #88602 from puchik/remove-cpuparticle-custom-aabb-init
...
Remove unnecessary AABB initialization for CPUParticles
2024-02-20 19:34:57 +01:00
Rémi Verschelde
02fdf262aa
Merge pull request #88566 from devloglogan/expose-handtracker-handles
...
Expose OpenXR hand tracker handles
2024-02-20 19:34:53 +01:00
Rémi Verschelde
73758e093e
Merge pull request #88456 from sabslikesobs/master
...
Expose pixel snapping settings add pixel-art notes
2024-02-20 19:34:48 +01:00