summaryrefslogtreecommitdiff
path: root/scene
AgeCommit message (Collapse)Author
2022-11-16Merge pull request #68573 from Sauermann/fix-optionbutton-popupRémi Verschelde
Fix position and size of OptionButton PopupMenu
2022-11-16Merge pull request #68709 from MewPurPur/instance-begone-part3Rémi Verschelde
Remove more instances of 'instance' being used as a verb
2022-11-16Remove more instances of 'instance' being used as a verbVolTer
2022-11-16Merge pull request #68725 from TokageItLab/fix-bone-renamer-for-conflictingRémi Verschelde
Improve BoneRenamer to avoid conflicting with original bone name
2022-11-16Improve BoneRenamer to avoid conflicting with original bone nameSilc Renew
2022-11-16Add a node compatibility handler for ProximityGroupHugo Locurcio
This converts ProximityGroup nodes from 3.x projects into Node3Ds (their parent), rather than bare Nodes.
2022-11-15Merge pull request #64077 from ↵Rémi Verschelde
Calinou/tweak-audiostreamplayer2d3d-default-panning Decrease default AudioStreamPlayer2D/3D panning strength
2022-11-15Merge pull request #67948 from DeeJayLSP/split_webpRémi Verschelde
Overhaul WebP packer and split compression options
2022-11-15Overhaul WebP packer and split compression optionsDeeJayLSP
2022-11-15Fix false warning when renaming Joint2D's nodekobewi
2022-11-15Merge pull request #68681 from groud/fix_infinite_loop_in_resource_loaderRémi Verschelde
Fixes infinite loop in ResourceFormatText when having unexpected end of file
2022-11-15Fixes infinite loop in ResourceFormatText when having unexpected end of fileGilles Roudière
2022-11-15Merge pull request #68426 from clayjohn/GLES3-particlesRémi Verschelde
Add GPUParticles to the OpenGL3 renderer.
2022-11-14Add GPUParticles to the OpenGL3 renderer.clayjohn
This includes collision (2D SDF, Box, Sphere, Heightmap), attraction (Box, Sphere), and all sorting modes. This does not include 3D SDF collisions, trails, or manual emission.
2022-11-15Fix crash of queue_free() when main loop is not SceneTreeHaoyu Qiu
2022-11-14Merge pull request #67831 from kleonc/scene-tree-fix-storing-removed-nodesRémi Verschelde
`SceneTree` Fix storing removed nodes to be skipped by the group calls
2022-11-14Merge pull request #68664 from bruvzg/bmp_base_sizeRémi Verschelde
[Bitmap font] Always set valid fixed size, even if it's not set in the `fnt` file.
2022-11-14Merge pull request #68531 from marzecdawid/fix-gap-with-scrolling-down-in-TreeRémi Verschelde
Fix a gap with scrolling down in Tree with arrow keys (#57636)
2022-11-14Merge pull request #68564 from Mickeon/node-no-remove-group-errorRémi Verschelde
Strip ERR_FAIL from `Node.remove_from_group()`
2022-11-14Merge pull request #68657 from Sauermann/fix-redundant-initializationRémi Verschelde
Remove redundant non-trivial Variant types initializations
2022-11-14Fix a gap with scrolling down in Tree with arrow keys (#57636)Dawid Marzec
2022-11-14[Bitmap font] Always set valid fixed size, even if it's not set in the `fnt` ↵bruvzg
file.
2022-11-14Fix periods in editor strings and messagesHugo Locurcio
- Ensure all strings with ellipsis end with 3 periods instead of 2. - Fix extraneous period in "Error calling from signal '...' to callable" messages.
2022-11-14Remove redundant Variant-types initializationsMarkus Sauermann
2022-11-14Fix misc formatting issuesRémi Verschelde
Somehow I missed the failing CI report from trailing whitespace. Fixed a couple typos found by codespell while at it, and misc trailing semicolons in one of the files.
2022-11-14Merge pull request #68272 from Sauermann/fix-windowfocus-on-resizeRémi Verschelde
Fix Windowfocus on resizing
2022-11-14Merge pull request #68019 from Sauermann/fix-physics-mouseover-dropRémi Verschelde
Drop physics mouseover as soon as the mouse moves over a Control
2022-11-14[MP] Move engine and editor profilers to a plugin.Fabio Alessandrelli
Also refactor the editor plugin out of the ReplicationEditor.
2022-11-14Drop physics mouseover as soon as the mouse moves over a ControlMarkus Sauermann
2022-11-14Merge pull request #68582 from bruvzg/inv_gd3_bmp_fontRémi Verschelde
Add a special case for importing bitmap fonts designed for Godot 3.
2022-11-14Merge pull request #68448 from bruvzg/font_imp_trRémi Verschelde
[Font] Add an import option to pre-render all glyphs required for the translation.
2022-11-13Add optional UV2 logic for lightmapping to primitive shapesBastiaan Olij
2022-11-13Strip ERR_FAIL from `Node.remove_from_group()`Micky
Also simplifies group check removing unnecessary `!data.grouped.has`
2022-11-13Add a special case for importing bitmap fonts designed for Godot 3.bruvzg
2022-11-12Fix position and size of OptionButton PopupMenuMarkus Sauermann
Use the correct Transform2D (get_global_transform_with_canvas) for position and size.
2022-11-12Merge pull request #68477 from dzil123/visual_shader_ufunc_input_fixYuri Rubinsky
Fixes https://github.com/godotengine/godot/issues/68463
2022-11-11Merge pull request #68412 from bruvzg/le_caret_plRémi Verschelde
[Line Edit] Ignore placeholder text when drawing caret.
2022-11-11Merge pull request #68418 from Sauermann/fix-escape-dndRémi Verschelde
Allow canceling Drag and Drop with the Escape-Key
2022-11-11Merge pull request #68513 from Chaosus/fix_shader_paramRémi Verschelde
Fix `Shader::has_parameter` to return a correct value
2022-11-11Merge pull request #68358 from Sauermann/fix-pink-512-viewportRémi Verschelde
Fix SubViewport with default size being pink
2022-11-11Merge pull request #68428 from nikitalita/fix-mesh-convertRémi Verschelde
Fix deprecated mesh conversion
2022-11-11Fix `Shader::has_parameter` to return a correct valueYuri Rubinsky
2022-11-10fix old mesh conversion offsetsnikitalita
2022-11-10Visual Shader UVFunc keep existing input value on function changedzil123
2022-11-10[Font] Add an import option to pre-render all glyphs required for the ↵bruvzg
translation.
2022-11-09Merge pull request #68413 from Chaosus/fix_instance_uniformsYuri Rubinsky
2022-11-09Some fixes for instance shader parametersYuri Rubinsky
2022-11-08Fix crash from impossible Object::cast_toMarkus Sauermann
A Vector<>-variant can't be used in an Object::cast_to, because Vector doesn't inherit from Object and this cast always returns a nullptr. This patch replaces the Object::cast_to and accesses the contained Vector directly.
2022-11-08Allow canceling Drag and Drop with the Escape-KeyMarkus Sauermann
This patch implements the functionality to cancel Drag and Drop by using the escape key or more general, the ui_cancel action. Since this would be the third location, where the finalization of Drag and Drop would have to be implemented, that functionality was put into the private function _perform_drop. Simplified gui.drag_data.get_type() != Variant::NIL to gui.dragging because they are equivalent.
2022-11-08[Line Edit] Ignore placeholder text when drawing caret.bruvzg