aboutsummaryrefslogtreecommitdiff
path: root/scene
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | adding get_stored_values methodAriel Manzur2016-11-182-1/+20
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | changed order name (cherry picked from commit dbca4ee3fe283f59a8c9d50aae73b97f48be7b01)
| * | | | | Merge pull request #7112 from khairul169/hidehttpreqdebugRémi Verschelde2016-11-151-12/+12
| |\ \ \ \ \ | | | | | | | | | | | | | | Disable debug properties of HTTP Request
| | * | | | | Uncomment debug properties of HTTP Requestkhairul1692016-11-141-12/+12
| | | | | | |
| * | | | | | Merge pull request #7109 from volzhs/emit-signal-from-setGeorge Marques2016-11-143-1/+3
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | Emit "*_changed" signal in set_*
| | * | | | | | Emit "*_changed" signal in set_*volzhs2016-11-143-1/+3
| | |/ / / / /
| * | | | | | Merge pull request #7107 from eska014/wasmRémi Verschelde2016-11-141-1/+1
| |\ \ \ \ \ \ | | |/ / / / / | |/| | | | | Some WebAssembly stuff
| | * | | | | Clarify a NULL comparisoneska2016-11-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 'TreeItem::get_children()' does not return the child count, but rather a pointer to the children. This comparison caused an error during WebAssembly builds using the LLVM backend path.
| * | | | | | Merge pull request #6833 from Elinvention/masterRémi Verschelde2016-11-111-4/+13
| |\ \ \ \ \ \ | | |/ / / / / | |/| | | | | Make the step property useful for sliders
| | * | | | | Make the step property useful for sliders as described in #5773Elia Argentieri2016-10-151-4/+13
| | | | | | |
| * | | | | | Merge pull request #7052 from Paulb23/text_edit_color_uniformationRémi Verschelde2016-11-093-24/+9
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | Made background and symbol color follow the color API
| | * | | | | | Made background and symbol color follow the color APIPaulb232016-11-063-24/+9
| | | | | | | |
| * | | | | | | Fix Label valign positionvolzhs2016-11-071-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix #7055
| * | | | | | | Caret blink will no longer cause redraw without focus, issue 6167Paulb232016-11-062-2/+2
| |/ / / / / /
| * | | | | | Merge pull request #7036 from volzhs/spinbox-prefixRémi Verschelde2016-11-061-1/+4
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | Fix updating value of SpinBox with prefix
| | * | | | | | Fix updating value of SpinBox with prefixvolzhs2016-11-051-1/+4
| | | | | | | |
| * | | | | | | Merge pull request #7009 from volzhs/fix-double-clickRémi Verschelde2016-11-062-36/+4
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Fix to focus or rename node by double click
| | * | | | | | | Fix to focus or rename node by double clickvolzhs2016-11-012-36/+4
| | | |_|_|_|/ / | | |/| | | | |
| * | | | | | | Merge pull request #7022 from neikeq/pr-issue-7013Ignacio Etcheverry2016-11-061-0/+6
| |\ \ \ \ \ \ \ | | |_|/ / / / / | |/| | | | | | Keep groups when replacing nodes
| | * | | | | | Keep groups when replacing nodesIgnacio Etcheverry2016-11-031-0/+6
| | | | | | | |
| * | | | | | | fix a tiny typoScotFlux2016-11-041-2/+2
| | | | | | | |
| * | | | | | | Merge pull request #7000 from m4nu3lf/masterRémi Verschelde2016-11-022-17/+4
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Fixed Mix nodes in Animation Tree Player
| | * | | | | | | Fixed Mix nodes in Animation Tree Playerm4nu3lf2016-10-312-17/+4
| | | |/ / / / / | | |/| | | | |
| * | | | | | | Merge pull request #7004 from volzhs/fix-itemlistRémi Verschelde2016-11-021-1/+4
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Fix to fit stylebox with ItemList
| | * | | | | | | Fix to fit stylebox with ItemListvolzhs2016-11-011-1/+4
| | |/ / / / / /
| * | | | | | | style: Various other PEP8 fixes in Python filesRémi Verschelde2016-11-013-34/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Done with `autopep8 --select=E7`, fixes: - E701 - Put colon-separated compound statement on separate lines. - E702 - Put semicolon-separated compound statement on separate lines. - E703 - Put semicolon-separated compound statement on separate lines. - E711 - Fix comparison with None. - E712 - Fix (trivial case of) comparison with boolean. - E713 - Fix (trivial case of) non-membership check. - E721 - Fix various deprecated code (via lib2to3).
| * | | | | | | style: Fix PEP8 blank lines issues in Python filesRémi Verschelde2016-11-011-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Done with `autopep8 --select=E3,W3`, fixes: - E301 - Add missing blank line. - E302 - Add missing 2 blank lines. - E303 - Remove extra blank lines. - E304 - Remove blank line following function decorator. - E309 - Add missing blank line. - W391 - Remove trailing blank lines.
| * | | | | | | style: Fix PEP8 whitespace issues in Python filesRémi Verschelde2016-11-0111-35/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Done with `autopep8 --select=E2,W2`, fixes: - E201 - Remove extraneous whitespace. - E202 - Remove extraneous whitespace. - E203 - Remove extraneous whitespace. - E211 - Remove extraneous whitespace. - E221 - Fix extraneous whitespace around keywords. - E222 - Fix extraneous whitespace around keywords. - E223 - Fix extraneous whitespace around keywords. - E224 - Remove extraneous whitespace around operator. - E225 - Fix missing whitespace around operator. - E226 - Fix missing whitespace around operator. - E227 - Fix missing whitespace around operator. - E228 - Fix missing whitespace around operator. - E231 - Add missing whitespace. - E231 - Fix various deprecated code (via lib2to3). - E241 - Fix extraneous whitespace around keywords. - E242 - Remove extraneous whitespace around operator. - E251 - Remove whitespace around parameter '=' sign. - E261 - Fix spacing after comment hash. - E262 - Fix spacing after comment hash. - E265 - Format block comments. - E271 - Fix extraneous whitespace around keywords. - E272 - Fix extraneous whitespace around keywords. - E273 - Fix extraneous whitespace around keywords. - E274 - Fix extraneous whitespace around keywords. - W291 - Remove trailing whitespace. - W293 - Remove trailing whitespace.
| * | | | | | | style: Start applying PEP8 to Python files, indentation issuesRémi Verschelde2016-11-012-29/+29
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Done with `autopep8 --select=E1`, fixes: - E101 - Reindent all lines. - E112 - Fix under-indented comments. - E113 - Fix over-indented comments. - E115 - Fix under-indented comments. - E116 - Fix over-indented comments. - E121 - Fix a badly indented line. - E122 - Fix a badly indented line. - E123 - Fix a badly indented line. - E124 - Fix a badly indented line. - E125 - Fix indentation undistinguish from the next logical line. - E126 - Fix a badly indented line. - E127 - Fix a badly indented line. - E128 - Fix a badly indented line. - E129 - Fix a badly indented line.
| * | | | | | Fix Accept/ConfirmationDialog UI brokenvolzhs2016-10-311-5/+8
| | | | | | |
| * | | | | | Revert "Place child control under label in AcceptDialog."volzhs2016-10-311-25/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 3ef272290460670b82621727ba2e876fa0a5a01e.
| * | | | | | Revert "make `Container` node aware of `Size Flags`"Rémi Verschelde2016-10-301-12/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 6ed15e995dd83c1cf6808f261066580a1f8bc297. Fixes #6974.
* | | | | | | Merge branch 'master' of https://github.com/godotengine/godotJuan Linietsky2016-10-3061-338/+672
|\| | | | | |
| * | | | | | Merge pull request #6950 from rdb/masterRémi Verschelde2016-10-302-4/+6
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | Add "Never" underline mode to LinkButton
| | * | | | | | Add "Never" underline mode to LinkButtonrdb2016-10-282-4/+6
| | |/ / / / /
| * | | | | | Merge pull request #6928 from razvanc-r/fix-containerRémi Verschelde2016-10-301-0/+12
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | make Container node aware of Size Flags
| | * | | | | | make `Container` node aware of `Size Flags`Răzvan Cosmin Rădulescu2016-10-261-0/+12
| | |/ / / / /
| * | | | | | Merge pull request #6918 from pkowal1982/tween_fix_k3kRémi Verschelde2016-10-302-5/+14
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | Fix regression #6864 caused by #6613
| | * | | | | | Fix regression #6864 caused by #6613Pawel Kowal2016-10-262-5/+14
| | |/ / / / /
| * | | | | | Merge pull request #6614 from TheKK/issue5989Rémi Verschelde2016-10-301-16/+18
| |\ \ \ \ \ \ | | |/ / / / / | |/| | | | | Make FileDialog directory selection less misleading
| | * | | | | Show '.' in the tree of file_dialogYing-Ruei Liang(KK)2016-09-261-16/+18
| | | | | | |
| * | | | | | Merge pull request #6090 from WalasPrime/raytrace_forceRémi Verschelde2016-10-224-42/+59
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | Added force_raycast_update GDScript method for RayCast[2D]
| | * | | | | | Added force_raycast_update GDScript method for RayCast[2D]Karol Walasek2016-10-034-42/+59
| | | |_|/ / / | | |/| | | |
| * | | | | | Merge pull request #6850 from akien-mga/pr-scsub-shebangRémi Verschelde2016-10-1710-0/+20
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | SCsub: Add python shebang as a hint for syntax highlighting
| | * | | | | | SCsub: Add python shebang as a hint for syntax highlightingRémi Verschelde2016-10-1710-0/+20
| | | |_|/ / / | | |/| | | | | | | | | | | | | | | | | | Also switch existing shebangs to "better" /usr/bin/env python.
| * | | | | | Merge pull request #6806 from leezh/button_array_fixesRémi Verschelde2016-10-172-9/+59
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | ButtonArray fixes and improvements
| | * | | | | | Added support for tooltips in ButtonArray. Fixes #6597Zher Huei Lee2016-10-142-7/+47
| | | | | | | |
| | * | | | | | Fixes for ButtonArrayZher Huei Lee2016-10-121-2/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed hover sometimes not resetting when mouse leaves widget. Fixed text position not taking into account stylebox's content margins.
| * | | | | | | Merge pull request #6748 from mateka/issue-6199Rémi Verschelde2016-10-171-10/+25
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Place child dialog contents under label in AcceptDialog
| | * | | | | | | Place child control under label in AcceptDialog.Mateusz Adamczyk2016-10-091-10/+25
| | | |_|/ / / / | | |/| | | | | | | | | | | | | | | | | | | | | Fixes #6199.
| * | | | | | | Merge pull request #6739 from bvbfan/patch-3Rémi Verschelde2016-10-171-0/+10
| |\ \ \ \ \ \ \ | | |_|_|/ / / / | |/| | | | | | Button focus hovering