Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-10-23 | Merge pull request #33006 from Chaosus/fix_billboard_bug | Rémi Verschelde | |
Allows change Sprite3D scale if Billboard mode is enabled | |||
2019-10-23 | Allows change Sprite3D scale if Billboard mode is enabled | Yuri Roubinsky | |
2019-10-23 | Merge pull request #32998 from rxlecky/theme-refactor | Rémi Verschelde | |
Theme code refactoring | |||
2019-10-23 | Merge pull request #32972 from codecustard/fix_spinbox_not_releasingfocus | Rémi Verschelde | |
Fixes spinbox not releasing focus on value change | |||
2019-10-23 | Merge pull request #32992 from KoBeWi/AUTOVECTORZ | Rémi Verschelde | |
Auto-increment frame_coords when keying | |||
2019-10-22 | Shadows Now Properly Translate by RichTextEffect offset. | Eoin O'Neill | |
Bugfix 32981. | |||
2019-10-23 | Theme code refactoring | SeleckyErik | |
- Move GDScript-exposed function definitions from header to source file - Add null check to functions taking list pointers as parameters - Call clear() in copy_theme() if null is passed | |||
2019-10-22 | Merge pull request #32924 from ajweeks/add-ruler-arcs | Rémi Verschelde | |
Draw arcs to indicate angles being measured by ruler | |||
2019-10-22 | Merge pull request #32796 from Paulb23/set_text_caret | Rémi Verschelde | |
Changed `set_text` to place caret at start of the text. | |||
2019-10-22 | Merge pull request #32940 from nekomatata/text-edit-clear-colors | Rémi Verschelde | |
TextEdit syntax highlighting fixes | |||
2019-10-22 | Merge pull request #32965 from volzhs/richtextlabel-scroll-active | Rémi Verschelde | |
Fix scrolling RichTextLabel with scroll_active=false | |||
2019-10-22 | Auto-increment frame_coords when keying | Tomasz Chabora | |
2019-10-22 | Merge pull request #32989 from nekomatata/fix-crash-rename-state | Rémi Verschelde | |
Fixed crashes when renaming a state in AnimationNodeStateMachineEditor | |||
2019-10-22 | Fixed crashes when renaming a state in AnimationNodeStateMachineEditor | PouleyKetchoupp | |
Recursive calls to Control::_modal_stack_remove could cause a crash because of the list element not being invalidated while being erased from the list. It happens in the state machine case by hiding a line edit control when it loses focus. Fixes #23808 | |||
2019-10-22 | Merge pull request #32927 from Muller-Castro/ShapeCenteredFix | Rémi Verschelde | |
Fixed TouchScreenButton::shape_centered having no effect | |||
2019-10-22 | Merge pull request #32842 from LikeLakers2/animation-idx-to-track-idx | Rémi Verschelde | |
Changes the name of all parameters referring to track indices within Animation, to `track_idx` | |||
2019-10-22 | Merge pull request #32902 from nekomatata/auto-indent-bracket-fix | Rémi Verschelde | |
Auto-indent after opening bracket and parenthesis in the script editor | |||
2019-10-22 | Merge pull request #32921 from nekomatata/fix-cpu-particle-delay | Rémi Verschelde | |
Fixed delay when CPUParticles & CPUParticles2D start being emitted | |||
2019-10-22 | Merge pull request #32922 from nekomatata/fix-scene-timer-yield-leak | Rémi Verschelde | |
Fixed leak on exit when using yield with SceneTreeTimer | |||
2019-10-22 | Merge pull request #32864 from nekomatata/rich-text-image-size | Rémi Verschelde | |
Support for resized images in RichTextLabel | |||
2019-10-22 | Merge pull request #32896 from nekomatata/joint-reset-collision | Rémi Verschelde | |
Properly reset collision exception when releasing Joint2D | |||
2019-10-22 | Merge pull request #32889 from nekomatata/node-update-config-warning | Rémi Verschelde | |
Expose Node::update_configuration_warning() to scripts | |||
2019-10-22 | Merge pull request #32833 from nekomatata/label-autowrap-fix | Rémi Verschelde | |
Allow Label autowrap to cut words when they exceed line width | |||
2019-10-21 | Fixes spinbox not releasing focus on value change | Emmanuel Barroga | |
Trying to release focus of the spinbox's lineedit would not work when done in the "value_changed" callback. The reason is because the "value_change" signal is called first, then the "get_focus" method is called next. This causes the spinbox to get_focus after you try to release focus within the "value_changed" callback. To resolve this, spinbox should get focus first and then emit "value_changed". | |||
2019-10-22 | Fix scrolling RichTextLabel with scroll_active=false | volzhs | |
2019-10-21 | Merge pull request #32865 from rodolforg/fix_32711-lookat-scaling-again | Rémi Verschelde | |
Spatial::look_at wrong re-scaling | |||
2019-10-21 | Merge pull request #32863 from JFonS/navmesh_from_group | Rémi Verschelde | |
Add option to create navmesh from objects in group | |||
2019-10-21 | Merge pull request #32857 from madmiraal/fix-072e403 | Rémi Verschelde | |
Correct change made to joints_2d.cpp by 072e403. | |||
2019-10-20 | TextEdit syntax highlighting fixes | PouleyKetchoupp | |
- Fixed visual update when using add_keyword_color(), add_color_region(), clear_colors() in scripts - More accurate description for clear_colors() in TextEdit documentation | |||
2019-10-20 | Fixed -1 minimap index when smooth scrolling is enabled | Paulb23 | |
2019-10-20 | Fixed delay when CPUParticles & CPUParticles2D start being emitted | PouleyKetchoupp | |
Particles were processed only on the next frame after the emission started, causing a one frame delay in rendering. Now the first process cycle is started during the same frame, which makes them consistent with Particles & Particles2D. Fixes #32890 | |||
2019-10-19 | Fixed TouchScreenButton::shape_centered having no effect | Muller-Castro | |
The problem was that the shape_centered depended on TouchScreenButton::texture having a Texture | |||
2019-10-19 | Add arcs to indicate angle being measured by ruler | AJ Weeks | |
2019-10-19 | Fixed leak on exit when using yield with SceneTreeTimer | PouleyKetchoupp | |
Use case: yield(get_tree().create_timer(2), "timeout") Some resources were never released because the SceneTreeTimer was keeping a reference to GDScriptFunctionState in its signal connections, while GDScriptFunctionState was holding a reference to the SceneTreeTimer object. Cleaning all signal connections on game exit fixes the issue. Fixes #29946 | |||
2019-10-18 | Auto-indent after opening bracket and parenthesis in the script editor | PouleyKetchoupp | |
This change makes auto-indent work the same way as for curly brackets, so '[', '(', '{' all act the same. Fixes #32897 | |||
2019-10-17 | Properly reset collision exception when releasing Joint2D | PouleyKetchoupp | |
Now using joint_disable_collisions_between_bodies() to reset the exception, because body_remove_collision_exception() was doing only a part of the work. Fixes #32733 | |||
2019-10-17 | Expose Node::update_configuration_warning() to scripts | PouleyKetchoupp | |
This method can be used to generate custom node warnings by script. Node::_get_configuration_warning was already exposed to generate custom warnings, but it wasn't fully usable without being able to notify the scene tree when the warning needs to appear or change. | |||
2019-10-16 | Add option to create navmesh from objects in group | jfons | |
Adds a new NavigationMesh property to select which objects will be taken into account for the generation. By default it will use all the NavigationMeshInstance children to keep compatibility. The new modes allow to build the NavigationMesh from all the nodes belonging to a specific group, and optionally include their children too. | |||
2019-10-16 | Support for resized images in RichTextLabel | PouleyKetchoupp | |
BBCode Tag: [img=<width>x<height>]{path}[/img] | |||
2019-10-16 | Allow Label autowrap to cut words when they exceed line width | PouleyKetchoupp | |
Fixes #30832 | |||
2019-10-15 | Correct change made to joints_2d.cpp by 072e403. | Marcel Admiraal | |
2019-10-15 | Merge pull request #32820 from qarmin/small_fixes_static_analyzer | Rémi Verschelde | |
Small fixes to redundand code, copy paste bugs | |||
2019-10-14 | Changes the name of all parameters referring to track indices within ↵ | LikeLakers2 | |
Animation, to "track_idx" | |||
2019-10-14 | Fix color of FileDialog icons | Yuri Roubinsky | |
2019-10-14 | Small fixes to redundand code, copy paste bugs | qarmin | |
2019-10-13 | Fix undo / redo scrollbar calulations | Paulb23 | |
2019-10-13 | Place caret at 0,0 when setting text not at the end | Paulb23 | |
2019-10-13 | Fixes Sprite frame_coords | Gilles Roudiere | |
2019-10-12 | Optimize images losslessly using `oxipng -o6 --strip all --zopfli` | Hugo Locurcio | |
2019-10-11 | Merge pull request #32731 from codecustard/fix_concaveshape_not_selecting | Rémi Verschelde | |
Fixes concaveshape not selecting in viewport |