summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-08-22Invalid materials or shaders will now interrupt the next chain in materials, ↵Juan Linietsky
closes #9570
2017-08-22Merge pull request #10543 from hpvb/fix-10524Rémi Verschelde
Change order of Null check for ParallaxLayer
2017-08-22Change order of Null check for ParallaxLayerHein-Pieter van Braam
The change in #10524 subtly changes the behavior of set_motion_scale() and set_motion_offset() if the ParallaxLayer does not have a parent node. Previously it would still set the corresponding property, but after this change the property change would be discarded. I'm not entirely sure if this actually matters as there doesn't appear to be any code that picks up this change if the ParallaxLayer gets re-parented later, but it's better to not change behavior regardless.
2017-08-22Merge pull request #10520 from RandomShaper/fix-double-parsingJuan Linietsky
Fix tokenization of doubles
2017-08-22Merge pull request #10493 from MednauN/masterRémi Verschelde
Add stretching to `TextureProgress`
2017-08-22Merge pull request #10538 from groud/fix_useless_separatorRémi Verschelde
Fix unneeded separator in Script Editor's Debug menu
2017-08-22Add stretching to `TextureProgress`Evgeny Zuev
Now `TextureProgress` has `nine_patch_stretch` flag. With this flag enabled, it's being rendered as 9-path using `stretch_margin_*` properties as texture margins. Stretching doesn't support `FILL_CLOCKWISE` and `FILL_COUNTER_CLOCKWISE` fill modes.
2017-08-22Fix uneeded separatorGilles Roudiere
2017-08-22Merge pull request #10507 from toger5/override_code_them_bgRémi Verschelde
added setting to override the theme background with editor theme color
2017-08-22Merge pull request #10487 from marcelofg55/curscr_as_defaultRémi Verschelde
p_screen param from get_screen_* funcs now default to the current screen
2017-08-22Merge pull request #10519 from toger5/remove_addition_borderRémi Verschelde
Remove addition border
2017-08-22Merge pull request #10527 from hpvb/fix-10517Rémi Verschelde
Add null check to ScriptEditor get_current_tab_control() call
2017-08-22Merge pull request #10524 from hpvb/fix-10515Rémi Verschelde
Add null check to ParallaxLayer get_parent() calls
2017-08-22Fix Reindhart tonemapping, invalid type in signatureRémi Verschelde
Fixes #10533.
2017-08-22Merge pull request #10536 from MasonAsh/fix-10532Rémi Verschelde
Fixed build for Visual Studio
2017-08-21Fixed build for Visual StudioMason Ashbridge
2017-08-21Update ISSUE_TEMPLATE.mdJuan Linietsky
2017-08-21Several fixes to subsurface scattering. Closes #9530Juan Linietsky
2017-08-22Add null check to ScriptEditor get_current_tab_control() callHein-Pieter van Braam
This fixes #10517
2017-08-22Add null check to ParallaxLayer get_parent() callsHein-Pieter van Braam
This fixes #10515
2017-08-22Fix build after merge of #10254Rémi Verschelde
2017-08-22Merge pull request #10340 from Rubonnek/remove-unnecessary-assignmentsRémi Verschelde
Removed unnecessary assignments
2017-08-22Merge pull request #10254 from marcelofg55/masterRémi Verschelde
Added notification const NOTIFICATION_WM_ABOUT
2017-08-21Merge pull request #10351 from neikeq/enums-are-for-the-weakJuan Linietsky
ClassDB: Provide the enum name of integer constants
2017-08-22Merge pull request #10415 from tagcup/euler_hackRémi Verschelde
Fix incorrect workaround for pure Y (X) rotations in XYZ (YXZ) conven…
2017-08-22Merge pull request #10225 from Noshyaar/mapRémi Verschelde
GDScript Built-in: add inverse_lerp & range_lerp
2017-08-22Merge pull request #10427 from Hinsbart/fix_paddingRémi Verschelde
TextEdit: Fix line padding triggering too early.
2017-08-21Fix tokenization of doublesPedro J. Estébanez
Fixes #9600.
2017-08-21Merge pull request #10433 from djrm/pr_svg_supportRémi Verschelde
SVG support
2017-08-21p_screen param from get_screen_* funcs now default to the current screenMarcelo Fernandez
2017-08-21Merge pull request #10443 from karroffel/propagate_callRémi Verschelde
add "propagate_call" method to Node
2017-08-21added setting to override the theme background with editor theme colortoger5
2017-08-21removed additional border function. (not needed with new styleboxes)toger5
2017-08-21added utility funtions for expand margins (in styleBox)toger5
2017-08-21Merge pull request #10518 from godotengine/revert-8144-symlinkJuan Linietsky
Revert "Reworked change_dir to support symlinks"
2017-08-21Revert "Reworked change_dir to support symlinks"Juan Linietsky
2017-08-21Merge pull request #10484 from Sipaha/pr_mt_queue_deadlock_fixRémi Verschelde
Fix deadlock in CommandQueueMT
2017-08-21Merge pull request #10506 from hpvb/fix-10501Rémi Verschelde
Fix color_ramp indexing negative elements
2017-08-21Merge pull request #10508 from Paulb23/increase_smooth_scroll_speedRémi Verschelde
Increased smooth scroll speed and added user setting
2017-08-21Merge pull request #10512 from toger5/fixed_vs_editor_nodesRémi Verschelde
fixed rounded corners for visual script editor
2017-08-21Merge pull request #10514 from groud/fix_grid_size_dialogRémi Verschelde
Fix spinboxes bad look
2017-08-21Fix spinboxes bad lookGilles Roudiere
2017-08-21fixed rounded corners for visual script editortoger5
2017-08-21Removed unnecessary assignmentsWilson E. Alvarez
2017-08-21Merge pull request #10471 from akien-mga/args-doubledashRémi Verschelde
Third take at making command-line arguments more UNIX-like + main.cpp and help cleanup
2017-08-21Increased smooth scroll speed and added user settingPaulb23
2017-08-21Merge pull request #10505 from marcelofg55/osx_window_positionRémi Verschelde
Fix y axis for set_window_position on OS X
2017-08-21Fix color_ramp indexing negative elementsHein-Pieter van Braam
The 'pos' variable passed to get_color() and get_offset() can be negative if the color ramp itself is empty. This causes a lookup in an empty position in the color Vector which leads to a crash. We add a check so we never do a lookup in the color Vector if the gradient is empty. This fixes #10501
2017-08-21Fix y axis for set_window_position on OS XMarcelo Fernandez
2017-08-21Fix binary object marshalling, closes #9472Juan Linietsky