summaryrefslogtreecommitdiff
path: root/scene
AgeCommit message (Collapse)Author
2020-07-10Merge pull request #40253 from madmiraal/add-override-keywordsRémi Verschelde
Add override keywords.
2020-07-10Merge pull request #36225 from Chaosus/shader_fmaYuri Roubinsky
Added 'fma' function to shader language
2020-07-10Merge pull request #38341 from verdog/camera-bounds-fixRémi Verschelde
Fix Camera2D incorrect preview bounds
2020-07-10Added 'fma' function to shader languageYuri Roubinsky
2020-07-10Add override keywords.Marcel Admiraal
2020-07-10Merge pull request #40228 from mrushyendra/multinode_selection_masterRémi Verschelde
Emit signals for GraphEdit multi-node selection and unselection
2020-07-10Merge pull request #40197 from mrushyendra/pathfollow_masterRémi Verschelde
Fix repeated updates of PathFollow3D Transform
2020-07-09Emit signals for GraphEdit multi-node selection and unselectionMaganty Rushyendra
Emit `node_selected` and `node_deselected` signals where appropriate when selecting or unselecting multiple GraphEdit nodes at once.
2020-07-09Fix exclusive child focus grab, when there are more than two child windows.bruvzg
2020-07-08Fix repeated updates of PathFollow3D TransformMaganty Rushyendra
Add optional parameter to specify whether applying rotation to the PathFollow3D's Transform is necessary, preventing erroneous updates.
2020-07-05Fix GraphEdit reconnecting to disconnected portYuri Roubinsky
2020-07-05Merge pull request #40112 from Chaosus/graphedit_connection_enchancementRémi Verschelde
Prevents incorrect connection attempt on port clicking in GraphEdit
2020-07-04Merge pull request #40084 from bruvzg/macos_seamless_scalingRémi Verschelde
[macOS] Implement seamless display scaling.
2020-07-04[macOS] Implement seamless display scaling.bruvzg
2020-07-04Prevents incorrect connection attempt on port clicking in GraphEditYuri Roubinsky
Prevents incorrect connection attempt on port clicking in GraphEdit
2020-07-03Change how default fonts are created, fixes #39235Juan Linietsky
Also fixes file dialog icons.
2020-07-04Merge pull request #40092 from hinlopen/remove-find-lastRémi Verschelde
Remove String::find_last (same as rfind)
2020-07-03Remove String::find_last (same as rfind)Stijn Hinlopen
2020-07-03Provide warning when using polygon shapes in `CollisionShape2D` nodeAndrii Doroshenko (Xrayez)
`ConvexPolygonShape2D` and `ConcavePolygonShape2D` are only meant to be used directly in code and not in the editor for physics-based use cases specifically. Developers are advised to use `CollisionPolygon2D` instead, which does generate those shapes under the hood, handling polygon convexivity, proper orientation etc.
2020-07-03Merge pull request #37218 from lrgilbert/graphnode-port-separationRémi Verschelde
Fixed GraphNode port separation.
2020-07-03Merge pull request #40081 from nekomatata/richtextlabel-fill-regressionRémi Verschelde
Fix RichTextLabel fill alignment regression
2020-07-03Merge pull request #32907 from georgikoemdzhiev/FixPressedIssueRémi Verschelde
Uncheck 'Pressed' if toggle_mode is unchecked
2020-07-03Fixed separation of ports on GraphNodelrgilbert
Fixes #32474.
2020-07-03Fix RichTextLabel fill alignment regressionPouleyKetchoupp
Fixes #40068 (regression from #39164) by not applying the line offset change in the case of fill alignment mode.
2020-07-03Merge pull request #39968 from lordkettune/custom-tracks-fixRémi Verschelde
Fix custom tracks causing issues on reimport
2020-07-03Merge pull request #40063 from RandomShaper/clean_blend_timesRémi Verschelde
Ignore (clean) blend times for non-existent animations
2020-07-03Merge pull request #40071 from reduz/fix-content-scaleRémi Verschelde
Fix content scale mode, closes #37941
2020-07-02Fix issues with custom tracks on reimportlordkettune
2020-07-02Fix content scale mode, closes #37941Juan Linietsky
2020-07-02Uncheck 'Pressed' if toggle_mode is uncheckedgeorgikoemdzhiev
2020-07-02Ignore blend times for inexistent animationsPedro J. Estébanez
2020-07-02Ensure cursor shape changes when exiting window, fixes #37724Juan Linietsky
2020-07-02Merge pull request #37350 from aaronfranke/force-impulseRémi Verschelde
Refactor physics force and impulse code to use (force, position) order
2020-07-02Prevent dragging from SceneTree buttonsHaoyu Qiu
2020-07-02Merge pull request #36879 from ThakeeNathees/animation-autocomplete-bug-fixRémi Verschelde
Fix: animation autocomplete bug fixed
2020-07-02Merge pull request #34926 from Xrayez/draw-transform-defaultsRémi Verschelde
Provide `draw_set_transform` defaults for rotation and scale
2020-07-02Merge pull request #40020 from reduz/fix-tree-edit-focusRémi Verschelde
Fix doubleclick on tree item, restore input focus on previous windows.
2020-07-02Merge pull request #40028 from reduz/fix-popups1Rémi Verschelde
Fix some popup menus missing screen transform.
2020-07-02Merge pull request #40022 from reduz/fix-subwindow-clampRémi Verschelde
Add ability to clamp embedded subwindows to parent
2020-07-01Fix some popups menu missing screen transform.Juan Linietsky
Closes #38591
2020-07-01Merge pull request #32516 from nekomatata/texture-button-flipRémi Verschelde
Added flip_h and flip_v properties in TextureButton
2020-07-01Add ability to clamp embedded subwindows to parent, fixes #37792Juan Linietsky
2020-07-01Fix doubleclick on tree item, restore input focus on previous windows.Juan Linietsky
Closes #37335
2020-07-01Provide `draw_set_transform` defaults for rotation and scaleAndrii Doroshenko (Xrayez)
2020-07-01Merge pull request #40016 from akien-mga/environment-code-cleanupRémi Verschelde
Environment: Refactor code for readability + more
2020-07-01Merge pull request #40015 from reduz/fix-embedded_subwindow-inputRémi Verschelde
Ensure embedded mode works again
2020-07-01Merge pull request #36307 from Xrayez/raycast-enabled-trueRémi Verschelde
Enable raycast nodes by default
2020-07-01Environment: Refactor code for readability + moreRémi Verschelde
- Makes all boolean setters/getters consistent. - Fixes bug where `glow_hdr_bleed_scale` was not used. - Split CameraEffects to their own source file. - Reorder all Environment method and properties declarations, definitions and bindings to be consistent with each other and with the order of property bindings. - Bind missing enum values added with SDFGI. - Remove unused SDFGI enhance_ssr boolean. - Sync doc changes after SDFGI merge and other misc changes.
2020-07-01Ensure embedded mode works againJuan Linietsky
Also implemented application in/out notifications in X11.
2020-07-01Added flip_h and flip_v properties in TextureButtonPouleyKetchoupp