summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-03-13Merge pull request #59107 from otonashixav/expose-add-animation-sliceRémi Verschelde
2022-03-13Merge pull request #59112 from bruvzg/right_clipRémi Verschelde
2022-03-13Merge pull request #59106 from Geometror/fix-windows-vsync-change-at-runtimeRémi Verschelde
2022-03-13Fix text clipping on the right side.bruvzg
2022-03-13Expose `RenderingServer::canvas_item_add_animation_slice` in GDScriptXavier Loh
2022-03-13Merge pull request #59102 from rcorre/copy-project-configRémi Verschelde
2022-03-13Merge pull request #59101 from bruvzg/bold_advanceRémi Verschelde
2022-03-13Merge pull request #59098 from timothyqiu/rtl-shadow-colorRémi Verschelde
2022-03-13Reenable window_set_vsync_mode on WindowsHendrik Brucker
2022-03-13Copy full project setting path from dialog.Ryan Roden-Corrent
The EditorProperty UI elements for project settings are created from SectionedInspector, which has a prefix added to each property path. Each EditorProperty needs to be made aware of this path so copy_property_path copies the full path, and not just the suffix. Fixes #59020.
2022-03-13Improve simulated bold fonts advance.bruvzg
2022-03-13Fix RichTextLabel shadow color when text has transparencyHaoyu Qiu
2022-03-13Merge pull request #59090 from KoBeWi/show_never_everRémi Verschelde
Improve scene tab close button options
2022-03-13Improve scene tab close button optionskobewi
2022-03-13Merge pull request #58018 from Calinou/procedural-sky-add-cover-textureRémi Verschelde
Add sky cover texture for ProceduralSkyMaterial
2022-03-13Merge pull request #58819 from vreon/fix-eyedir-zRémi Verschelde
Fix flipped EYEDIR.z in sky shaders
2022-03-13Merge pull request #59084 from rburing/particle_collision_gizmo_fixRémi Verschelde
Fix out of bounds crash in particle collision gizmo
2022-03-12Fix out of bounds crash in particle collision gizmoRicardo Buring
2022-03-12Merge pull request #58338 from aaronfranke/boolsRémi Verschelde
Initialize bools in the headers in `editor/`
2022-03-12Merge pull request #59075 from aaronfranke/cs-slerp-doc-xml-and-testRémi Verschelde
Fix Slerp C# docs and add test cases for vectors in the same direction
2022-03-12Merge pull request #58772 from keptsecret/fix_filedialog_user_data_accessRémi Verschelde
Fix unable to change directory in user access mode
2022-03-12Merge pull request #54399 from ↵Rémi Verschelde
Calinou/filedialog-current-properties-hint-no-editor Don't store and show current file/directory/path FileDialog properties
2022-03-12Initialize bools in the headers in editorAaron Franke
2022-03-12Fix Slerp C# docs and add test cases for vectors in the same directionAaron Franke
2022-03-12Merge pull request #59061 from fazil47/graph_edit_offset_fixRémi Verschelde
2022-03-12Merge pull request #59050 from KoBeWi/tsal_eht_morf_sseccaRémi Verschelde
2022-03-12Merge pull request #59040 from ↵Rémi Verschelde
Sauermann/fix-cursorshape-animationnodestatemachineeditor
2022-03-12Merge pull request #59057 from timothyqiu/smart-guideRémi Verschelde
2022-03-12Merge pull request #58991 from Chaosus/add_script_autoload_optionYuri Rubinsky
2022-03-12Add "Add Script" option to project autoload settingsYuri Roubinsky
2022-03-12popup_request signal emits mouse click positionFazil Babu
2022-03-12Hide smart snapping line when guideline dragging endsHaoyu Qiu
2022-03-12Allow negative indexes in ItemList and PopupMenukobewi
2022-03-11Merge pull request #59039 from MythTitans/fix-smoothed-normals-computationRémi Verschelde
Fix mixed smoothed and non-smoothed face normals computation for CSG shapes
2022-03-11Prevent non-smoothed face normals to participate to smoothed face normalsMythTitans
2022-03-11Merge pull request #59036 from Calinou/doc-curve-add-pointRémi Verschelde
Clarify the position of points in `Curve{2D,3D}.add_point()`
2022-03-11Merge pull request #59035 from timothyqiu/vs-rtrRémi Verschelde
Use `RTR()` for `VisualScriptNode` captions and texts
2022-03-11Use get_cursor_shape for identifying the cursor shape in ↵Markus Sauermann
AnimationNodeStateMachineEditor get_cursor_shape() is used in cases where a Control displays different cursors in different areas. There is no need to set the default cursor shape on every mouse move event. Fix minor issue with selection order.
2022-03-11Clarify the position of points in `Curve{2D,3D}.add_point()`Hugo Locurcio
2022-03-11Use `RTR()` for VisualScriptNode captions and textsHaoyu Qiu
2022-03-11Merge pull request #59007 from novaplusplus/code_edit_from_to_error_fixRémi Verschelde
2022-03-11Merge pull request #59013 from bruvzg/fake_bold_italicsRémi Verschelde
2022-03-11Merge pull request #59026 from ↵Rémi Verschelde
Sauermann/fix-cursorshape-animationtrackedittypeaudio
2022-03-11Use get_cursor_shape for identifying the cursor shape in ↵Markus Sauermann
AnimationTrackEditTypeAudio get_cursor_shape() is used in cases where a Control displays different cursors in different areas. There is no need to set the default cursor shape on every mouse move event.
2022-03-11Add options to embolden and transform font outlines to simulate bold and ↵bruvzg
italic typefaces.
2022-03-11Merge pull request #58986 from akien-mga/diraccessrefRémi Verschelde
2022-03-11Merge pull request #59016 from Sauermann/fix-cursorshape-animationtimelineeditRémi Verschelde
2022-03-11Merge pull request #58751 from bruvzg/loc_str_propsRémi Verschelde
2022-03-11Use get_cursor_shape for identifying the cursor shape in AnimationTimelineEditMarkus Sauermann
get_cursor_shape() is used in cases where a Control displays different cursors in different areas. There is no need to set the default cursor shape on every mouse move event.
2022-03-11Convert uses of `DirAccess *` to `DirAccessRef` to prevent memleaksRémi Verschelde
`DirAccess *` needs to be deleted manually, and this is often forgotten especially when doing early returns with `ERR_FAIL_COND`. `DirAccessRef` is deleted automatically when it goes out of scope. Co-authored-by: bruvzg <7645683+bruvzg@users.noreply.github.com>