Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-08-26 | -Massive clean up to gizmos | Juan Linietsky | |
-Make sure handles are always visible (on top) -Fixed instanced scene selection (should work properly now) -Added interpolated camera -Customizable gizmo colors in editor settings | |||
2017-08-25 | added finished signals to audio stream players, fixes #9928 | Juan Linietsky | |
2017-08-25 | Removed old fp_adjust code that conflicts with clipped rects, fixes #9925 | Juan Linietsky | |
2017-08-24 | Convert Object::cast_to() to the static version | Hein-Pieter van Braam | |
Currently we rely on some undefined behavior when Object->cast_to() gets called with a Null pointer. This used to work fine with GCC < 6 but newer versions of GCC remove all codepaths in which the this pointer is Null. However, the non-static cast_to() was supposed to be null safe. This patch makes cast_to() Null safe and removes the now redundant Null checks where they existed. It is explained in this article: https://www.viva64.com/en/b/0226/ | |||
2017-08-24 | -Code completion for enumerations | Juan Linietsky | |
-Disabled GDNative and GDNativeScript so build compiles again | |||
2017-08-23 | Merge pull request #10561 from Paulb23/smooth_scroll_input_override | Rémi Verschelde | |
Stops scrolling when the user issues another command | |||
2017-08-23 | Merge pull request #10556 from marcelofg55/master | Rémi Verschelde | |
Add missing NULL check for the new show_about() call | |||
2017-08-23 | Merge pull request #10555 from Rubonnek/removed-unnecessary-returns-and-breaks | Rémi Verschelde | |
Removed unnecessary returns and break statements [ci skip] | |||
2017-08-22 | fixed crash styleBoxTexture binding issue | toger5 | |
2017-08-22 | Stops scrolling when the user issues another command | Paulb23 | |
2017-08-22 | TextEdit: Copy whole line if not having selection. | Andreas Haas | |
The functionality was already there but hidden behind a bogus return statement. Fixes #10485 | |||
2017-08-22 | Add missing NULL check for the new show_about() call | Marcelo Fernandez | |
2017-08-22 | Removed unnecessary returns and break statements | Wilson E. Alvarez | |
2017-08-22 | Change order of Null check for ParallaxLayer | Hein-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-22 | Merge pull request #10493 from MednauN/master | Rémi Verschelde | |
Add stretching to `TextureProgress` | |||
2017-08-22 | Add 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-22 | Merge pull request #10519 from toger5/remove_addition_border | Rémi Verschelde | |
Remove addition border | |||
2017-08-22 | Add null check to ParallaxLayer get_parent() calls | Hein-Pieter van Braam | |
This fixes #10515 | |||
2017-08-22 | Fix build after merge of #10254 | Rémi Verschelde | |
2017-08-22 | Merge pull request #10340 from Rubonnek/remove-unnecessary-assignments | Rémi Verschelde | |
Removed unnecessary assignments | |||
2017-08-22 | Merge pull request #10254 from marcelofg55/master | Rémi Verschelde | |
Added notification const NOTIFICATION_WM_ABOUT | |||
2017-08-21 | Merge pull request #10351 from neikeq/enums-are-for-the-weak | Juan Linietsky | |
ClassDB: Provide the enum name of integer constants | |||
2017-08-22 | Merge pull request #10427 from Hinsbart/fix_padding | Rémi Verschelde | |
TextEdit: Fix line padding triggering too early. | |||
2017-08-21 | Merge pull request #10443 from karroffel/propagate_call | Rémi Verschelde | |
add "propagate_call" method to Node | |||
2017-08-21 | added utility funtions for expand margins (in styleBox) | toger5 | |
2017-08-21 | Merge pull request #10506 from hpvb/fix-10501 | Rémi Verschelde | |
Fix color_ramp indexing negative elements | |||
2017-08-21 | Merge pull request #10508 from Paulb23/increase_smooth_scroll_speed | Rémi Verschelde | |
Increased smooth scroll speed and added user setting | |||
2017-08-21 | Fix spinboxes bad look | Gilles Roudiere | |
2017-08-21 | Removed unnecessary assignments | Wilson E. Alvarez | |
2017-08-21 | Increased smooth scroll speed and added user setting | Paulb23 | |
2017-08-21 | Fix color_ramp indexing negative elements | Hein-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-20 | Fixed segfault when hovering over scene tree elements and showing tooltips. | Wilson E. Alvarez | |
2017-08-20 | ClassDB: Provide the enum name of integer constants | Ignacio Etcheverry | |
2017-08-20 | Merge pull request #10319 from neikeq/pr-engine-editor-hint | Juan Linietsky | |
Adds Engine::is_editor_hint() method | |||
2017-08-20 | Merge pull request #10479 from Paulb23/fix_not_scrolling_eof | Rémi Verschelde | |
Fixed not being able to scroll to eof | |||
2017-08-20 | Merge pull request #10455 from groud/control_margin_fixes | Rémi Verschelde | |
Some control fixes and removed other useless lines | |||
2017-08-20 | Fixed not being able to scroll to eof | Paulb23 | |
2017-08-19 | -Fix all shadow and culling related issues, fixes #9330 | Juan Linietsky | |
2017-08-19 | Some control fixes and removed useless lines | Gilles Roudiere | |
2017-08-19 | Added polygon antialiasing, but it does not work on nvidia. Will have to try ↵ | Juan Linietsky | |
something else.. | |||
2017-08-19 | Merge pull request #10447 from Paulb23/smooth_scrolling | Rémi Verschelde | |
Added smooth scrolling to TextEdit | |||
2017-08-19 | Merge pull request #10444 from ↵ | Rémi Verschelde | |
toger5/styleBoxFlat_corner_detail_value_limitation styleBoxFlat: clamp corner_detail + aa_size | |||
2017-08-19 | Merge pull request #10442 from toger5/stylebox_corner_detail | Rémi Verschelde | |
Performance improvement for new styleBoxFlat. | |||
2017-08-19 | Added smooth scrolling to TextEdit | Paulb23 | |
2017-08-19 | Fixes to label and code editor to make editing code hopefully fast again. | Juan Linietsky | |
2017-08-19 | add "propagate_call" method to Node | Karroffel | |
It is possible to propagate a notification down the Node tree by using `propagate_notification`, but there was no such method for doing the same but with method calls. This commit adds the `propagate_call` method, which calls a method on a node and all child nodes. An optional paramter `parent_first` determines whether the parent node gets called before or after the children have been visited. It defaults to false, so the parent gets called last. | |||
2017-08-19 | styleBoxFlat: clamp corner_detail + aa_size | toger5 | |
2017-08-19 | Performance styleBoxFlat: | toger5 | |
- style box flat was always drawn with 8 verts per corner in case it was a rounded corner... now it uses only one vert if it has no rounded corner. | |||
2017-08-19 | Merge pull request #10439 from Paulb23/blinking_text_issue_10432 | Rémi Verschelde | |
Fixed blinking text, issue 10432 | |||
2017-08-19 | Fixed blinking text, issue 10432 | Paulb23 | |