summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-03-02Implement single-field property change for multinode editPedro J. Estébanez
2017-02-28Merge pull request #7878 from RebelliousX/elseRémi Verschelde
Bunch of missing `else` statements and general logic
2017-02-28Merge pull request #7787 from SaracenOne/nan_and_infRémi Verschelde
Inf and NaN support added to GDScript
2017-02-28Inf and NaN support added to GDScript.Saracen
2017-02-28 Various fixes detected using PVS-Studio static analyzer.Thaer Razeq
- Add FIXME tags comments to some unfixed potential bugs - Remove some checks (always false: unsigned never < 0) - Fix some if statements based on reviews. - Bunch of missing `else` statements
2017-02-28Merge pull request #7904 from tagcup/use_math_prngRémi Verschelde
Use the common PRNG in 2D particles code.
2017-02-27Merge pull request #7527 from RayKoopa/inspector_show_in_file_systemRémi Verschelde
Add menu item in the inspector to show file in FileSystem
2017-02-27Merge pull request #7517 from RayKoopa/gui_disabled_tabsRémi Verschelde
Add feature to disable tabs in TabContainer and Tabs control.
2017-02-27Use the common PRNG in 2D particles code.Ferenc Arn
Replaces the custom PRNG used by 2D particles code with a wrapper for the PRNG located under core/math.
2017-02-27Merge pull request #7903 from shlomif/fix-build-compile-errorRémi Verschelde
Fix failing build when ALSA is absent [ci skip]
2017-02-27Fix failing build on mageia v6 x64 linux.Shlomi Fish
There was an error about undeclared malloc()+free().
2017-02-27Add disabled tabsRay Koopa
2017-02-27Merge pull request #7600 from RayKoopa/fix_tab_containerRémi Verschelde
Fix several drawing and logic issues in TabContainer
2017-02-27Add menu item for file resources in the inspector to reveal them in the ↵Ray Koopa
FileSystem
2017-02-27Fix several drawing and logic issues in TabContainerRay Koopa
2017-02-27fix custom scene arguments from the editorBenjamin Bäumler
sequel of #7347 Play edited scene and Play custom scene didn't worked when main_run_args hadn't $scene as argument. Changes/Fixes the way how the editor handles scene paths when starting the project/a scene Play the project - no scene path Play the edited scene - scene path of active scene in the editor Play custom scene - scene path of custom scene main_arg_runs is now empty by default and $scene won't be replaced by the scene path anymore Changed declaration if EditorRun::run, to remove a unused value
2017-02-27Merge pull request #6462 from RandomShaper/fix-improve-anim-blendRémi Verschelde
Fix/improve AnimationPlayer blending logic
2017-02-27Merge pull request #7897 from RandomShaper/particles2d-process-modeRémi Verschelde
Add process mode option to Particles2D
2017-02-27Add process mode option to Particles2DPedro J. Estébanez
2017-02-26Merge pull request #7862 from Hinsbart/joypad_connectionsRémi Verschelde
Better handling of joypad device IDs.
2017-02-26Merge pull request #7653 from Dumbeldor/RichTextLabel_remove_lineRémi Verschelde
RichTextLabel add function remove_line
2017-02-26Better handling of joypad device IDs.Andreas Haas
Now InputDefault is responsible for giving out joypad device IDs to the platform, instead of each platform handling this itself. This makes it possible for c++ modules to add their own "custom" gamepad devices, without the risk of messing up events in case the user also has regular gamepads attached (using the OS code). For now, it's implemented for the main desktop platforms. Possible targets for future work: android, uwp, javascript
2017-02-26Merge pull request #7889 from Hinsbart/fix_autoenable_inputRémi Verschelde
Fix auto-enable of _input processing when _input() method is set.
2017-02-26Merge pull request #7887 from bojidar-bg/particles-emission-endedRémi Verschelde
Add emission_finished signal to Particles2D
2017-02-26Merge pull request #7874 from volzhs/issue-7820-masterRémi Verschelde
Fix crash when click icon while editing node name
2017-02-26Merge pull request #7869 from RandomShaper/fix-touchbutton-crashRémi Verschelde
Fix crash if TouchScreenButton is pressed while exiting the tree
2017-02-26Merge pull request #7866 from Hinsbart/tween_fixRémi Verschelde
Fix undefined behavior found by static code analyzer.
2017-02-26Merge pull request #7834 from hpvb/x11-return-to-cwd-at-exitRémi Verschelde
X11 return to cwd at exit
2017-02-26Merge pull request #7858 from bojidar-bg/tilemap-get-sizeRémi Verschelde
Add Rect2 TileMap::get_used_rect()
2017-02-26Merge pull request #7857 from Hinsbart/external_script_breakRémi Verschelde
Don't switch to script on breakpoint hit when using external editor.
2017-02-26Merge pull request #7856 from RandomShaper/add-duplicate-flagsRémi Verschelde
Add more options to Node.duplicate()
2017-02-26Merge pull request #7854 from neikeq/pr-execute-iterRémi Verschelde
Replace misuse of list iteration
2017-02-26Merge pull request #7851 from shlomif/fix-some-compilation-warningsRémi Verschelde
Get rid of some compilation warnings.
2017-02-26Merge pull request #7848 from hpvb/fix-7839Rémi Verschelde
Windows: Close audiodriver sooner on exit
2017-02-26Merge pull request #7842 from Zylann/fix_line2d_editorRémi Verschelde
Fixed Line2D editor doesn't respond to input
2017-02-26Merge pull request #7831 from volzhs/tr-buttonarray-3Rémi Verschelde
Translate ButtonArray text
2017-02-26Merge pull request #7830 from volzhs/str-format-3Rémi Verschelde
Fix zero padding formatting
2017-02-26Merge pull request #7827 from volzhs/libwebp-0.6.0Rémi Verschelde
Update libwebp to 0.6.0
2017-02-26Merge pull request #7809 from hpvb/fix-6798Rémi Verschelde
Allow preload to accept a const string.
2017-02-26Merge pull request #7802 from tagcup/physics_64bitRémi Verschelde
Use real_t as floating point type in physics code.
2017-02-25Fix auto-enable of _input processing when _input() method is set.Andreas Haas
Since f3f4a11c processing of callbacks such as `_process`, `_fixed_process`, etc will be automatically enabled when the corresponding method is found in the script. However, for _input() this wasn't working. That's simply because `_input` wasn't initialized in `SceneStringNames` ^^
2017-02-25Add emission_finished signal to Particles2DBojidar Marinov
(Also remove some Particles2D::testee method, which was unused) Resolves #3963
2017-02-24Merge pull request #7880 from bojidar-bg/fix-iphone-buildsRémi Verschelde
Really fix iphone builds
2017-02-23Really fix iphone buildsBojidar Marinov
2017-02-23Merge pull request #7879 from bojidar-bg/fix-iphone-buildsRémi Verschelde
Complete the globals.h -> global_config.h conversion
2017-02-23Complete the globals.h -> global_config.h conversionBojidar Marinov
2017-02-22Fixes to webgl/opengl es 3.0 for compatibility with webgl2.0, still does not ↵Juan Linietsky
work though
2017-02-23Fix crash when click icon while editing node namevolzhs
2017-02-22Fix crash if TouchScreenButton is pressed while exiting the treePedro J. Estébanez
(cherry picked from commit 5b8d5766f4574b5011b3f258d3e9b34298eb609c)
2017-02-21working on template validationJuan Linietsky