summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-03-05Merge pull request #7954 from Hinsbart/tilemap_self_modulateRémi Verschelde
TileMap: Respect self_modulate property
2017-03-05Merge pull request #7950 from RandomShaper/expose-more-geomRémi Verschelde
Expose uncapped versions of closest-point-to-segment utilities
2017-03-05Merge pull request #7916 from RebelliousX/tab_containerRémi Verschelde
TabContainer's signal changes (v3)
2017-03-05TileMap: Respect self_modulate propertyAndreas Haas
Now `TileMap`s make use of the `self_modulate` property. There's still a bug: The Editor doesn't re-draw with the new color when you change the TileMaps `self_modulate` in the inspector. You'll have to make it update manually (by placing a tile, changing the transform, etc..) I'll open an issue for that after this is merged (If I don't fix it in the meantime ^^).
2017-03-05- `tab_changed` signal emits only by selecting a different tab.Thaer Razeq
- Added `tab_selected` signal. Which emits a signal by selecting any tab, if current tab is selected again. - Added `get_previous_tab()`. Which returns the previous shown tab. **Note:** only `tab_changed` can modify previous tab index. - Add documentation for the added function and signals. Fix a typo too.
2017-03-04Expose uncapped versions of closest-point-to-segment utilitiesPedro J. Estébanez
2017-03-04Add API to access battery power stateJulian Murgia
Done: - X11, server (tested) - Windows (developed, would be nice to retest) - OSX (not tested) Prepared (not developed): - Android (code is here, but may not compile) - iphone - winrt - bb10 - haiku - javascript
2017-03-04Added AppImage structureDaniel J. Ramirez
2017-03-04Implements modules documentsGeequlim
Editor can generate documents for modules in thier own xml files
2017-03-04Merge pull request #7508 from lonesurvivor/area2d-fixRémi Verschelde
Fix two problems with Area2D and remove_child()
2017-03-04Merge pull request #7929 from RayKoopa/editor_resizable_dialogsRémi Verschelde
Resizable editor / project settings dialogs & save their bounds
2017-03-04Merge pull request #7940 from RandomShaper/expose-geometryRémi Verschelde
Expose Geometry::get_closest_point_to_segment_2d()
2017-03-04Merge pull request #7937 from volzhs/fix-input-androidRémi Verschelde
Fix handling input for Android
2017-03-04Merge pull request #7927 from volzhs/wrong-ref-treeitemRémi Verschelde
Fix wrong TreeItem reference after reconstructing
2017-03-04Merge pull request #7923 from WalasPrime/fix_7922_peer_presentRémi Verschelde
Added a SceneTree.is_network_peer_present, closes #7922
2017-03-04Added a SceneTree.has_network_peer, closes #7922Karol Walasek
2017-03-04Expose Geometry::get_closest_point_to_segment_2d()Pedro J. Estébanez
2017-03-03Make Editor, Export and Project settings dialogs resizable and store their ↵Ray Koopa
bounds
2017-03-04Fix handling input for Androidvolzhs
2017-03-02Merge pull request #7930 from tagcup/missing_fixme_commentsRémi Verschelde
Added missing FIXMEs in PR #7878 [ci skip]
2017-03-02Added missing FIXMEs in PR #7878Ferenc Arn
2017-03-03Fix wrong TreeItem reference after reconstructingvolzhs
2017-03-02Merge pull request #7911 from RandomShaper/single-field-prop-editRémi Verschelde
Implement single-field property change for multinode edit
2017-03-02Implement single-field property change for multinode editPedro J. Estébanez
2017-03-02Merge pull request #7882 from AlexHolly/PoolStringArray-joinRémi Verschelde
added join to PoolStringArray
2017-03-02Merge pull request #7628 from RayKoopa/gui_resizable_popupsRémi Verschelde
Added functionality for resizable WindowDialogs
2017-03-01Added functionality for resizable dialogs.Ray Koopa
2017-03-01Merge pull request #7917 from lmbarros/masterRémi Verschelde
Fix RANDOM_MAX, which is 2^32-1 with PCG32. [ci skip]
2017-03-01Fix RANDOM_MAX, which is 2^32-1 with PCG32.Leandro Motta Barros
2017-03-01added join to PoolStringArrayAlexHolly
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