summaryrefslogtreecommitdiff
path: root/scene
AgeCommit message (Collapse)Author
2019-05-26Fix TextEdit blocking scroll without scrollbarTomasz Chabora
2019-05-24Merge pull request #29152 from nekomatata/fix-node-rename-tool-scriptRémi Verschelde
Fixed scene tree update after changing node name in tool script
2019-05-24Merge pull request #29078 from KoBeWi/scroll_stuffRémi Verschelde
Improvements to scroll handling
2019-05-24Merge pull request #28796 from clayjohn/GLES2-optimizationRémi Verschelde
GLES2: Allow Viewports to render directly to screen
2019-05-24Merge pull request #28811 from iwek7/editor_remove_spaces_to_closes_indentionRémi Verschelde
Change rules of indenting for spaces
2019-05-24Merge pull request #29067 from KoBeWi/spin_editRémi Verschelde
Pass mouse events to SpinBox from its LineEdit
2019-05-24Merge pull request #29133 from KoBeWi/ninja_modulateRémi Verschelde
Don't modulate canvas on invisible color change
2019-05-24Merge pull request #29060 from volzhs/toggled-groupRémi Verschelde
Refactor BaseButton event handling
2019-05-24Fixed scene tree update after changing node name in tool scriptPouleyKetchoupp
2019-05-24Improvements to scroll handlingTomasz Chabora
2019-05-24Don't modulate canvas on invisible color changeTomasz Chabora
2019-05-23Merge pull request #29125 from rodolforg/fix_spatial_look_at_affecting_scaleRémi Verschelde
fix un-scaling in Spatial::look_at_from_position
2019-05-23fix un-scaling in Spatial::look_at_from_positionRodolfo Ribeiro Gomes
As mentioned in https://github.com/godotengine/godot/pull/26897#issuecomment-491178089 the look-at scaling issue solved by PR #26897 happens also in another look-at method. Spatial::look_at_from_position() also does not have same input checking Spatial::look_at() has. Therefore, I fixed it too at same time.
2019-05-23Merge pull request #29031 from BastiaanOlij/alpha_shadowRémi Verschelde
Implement shadow to opacity
2019-05-23Merge pull request #29109 from RandomShaper/fix_onion_skinningRémi Verschelde
Fix onion skinning
2019-05-22Fix 'TextEdit's line wrapping being highlighted incorrectlyMichael Alexsander Silva Dias
Fixes #22867.
2019-05-22Fix 2D bones ignored by onion skinningPedro J. Estébanez
Fixes #27819.
2019-05-21Initialize readonly/editable in LineEdit and TextEdit controlsIbrahn Sahir
2019-05-21Fix expression node parsing when input_port + \0 is occuredChaosus
2019-05-21Merge pull request #29073 from Chaosus/express_fixesYuri Roubinsky
Fix few bugs in expression node
2019-05-21Fix few bugs in expression nodeChaosus
2019-05-21Merge pull request #29018 from guilhermefelipecgs/fix_28969Rémi Verschelde
[StateMachine] Fix error message for travel method
2019-05-21Merge pull request #28838 from Chaosus/vs_expRémi Verschelde
Expression node for visual shaders
2019-05-21Merge pull request #29040 from swarnimarun/fix_override_bugRémi Verschelde
Clear overrides on passing null
2019-05-21Merge pull request #29041 from hbina/add_constRémi Verschelde
add const to methods that return literals
2019-05-21Refactor BaseButton event handlingvolzhs
also _toggled() function and "toggled" signal called when unpressed by ButtonGroup
2019-05-21Pass mouse events to SpinBox from its LineEditTomasz Chabora
2019-05-21Implement shadow to opacityBastiaan Olij
2019-05-21Expression node for visual shadersChaosus
2019-05-21Merge pull request #29046 from volzhs/tree-page-downRémi Verschelde
PageDown key selects last one when left items count is short
2019-05-21PageDown key selects last one when left items count is shortvolzhs
2019-05-21added a const keyword for a methods that return constant literal...hbina085
2019-05-21Clear overrides on passing nullSwarnim Arun
2019-05-20Merge pull request #28952 from jbuck3/update-marginsRémi Verschelde
Update Control margins when size is overridden by change to minsize
2019-05-20Merge pull request #28218 from KoBeWi/b00km4rk5Rémi Verschelde
Add bookmarks for easier code navigation
2019-05-20Merge pull request #26809 from KoBeWi/undo_set_text_like_a_bossRémi Verschelde
Allow to undo TextEdit.set_text
2019-05-20Merge pull request #27559 from groud/anchor_modeRémi Verschelde
Improve the anchors and margin workflow
2019-05-20Style: Fix issues with clang-format 8.0Rémi Verschelde
2019-05-19[StateMachine] Fix error message for travel methodGuilherme Felipe
2019-05-19Merge pull request #28997 from akien-mga/codespellRémi Verschelde
Fix typos with codespell
2019-05-19Fix typos with codespellRémi Verschelde
Using codespell 1.15.0. Method: ``` $ cat > ../godot-word-whitelist.txt << EOF ang curvelinear doubleclick leapyear lod merchantibility nd numer ois ony que seeked synching te uint unselect webp EOF $ codespell -w -q 3 -I ../godot-word-whitelist.txt --skip="./thirdparty,*.po" $ git diff // undo unwanted changes ```
2019-05-19Added Fresnel and OneMinus to visual shadersChaosus
2019-05-17Merge pull request #28366 from iwek7/feature/issue28355/showSpacesInEditorMax Hilbrunner
Add feature to show spaces in code editor
2019-05-16Update Control margins when size is overridden by change to minsizeJames Buck
2019-05-16Fix text_edit drawing incorrect chars when syntax highlighting enabledPaulb23
2019-05-16Allow to undo TextEdit.set_textTomasz Chabora
2019-05-15Fix leftover connection to the "Open" signal in FileSystemDockMichael Alexsander Silva Dias
Fixes #28903.
2019-05-14Merge pull request #28583 from theoniko/show-long-name-variables-correctlyMichael Alexsander Silva Dias
Fix First Ctrl+R and Ctrl+F not showing long name variables correctly
2019-05-13Implement ability to render viewports directly to screenclayjohn
2019-05-13Improve the anchors and margin workflowGilles Roudiere