Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-05-25 | Fix virtual methods in InputEventKey. | Andreas Haas | |
This fixes a lot of problems with key input in the engine. | |||
2017-05-25 | Merge pull request #8590 from tagcup/s3tc_stuff | Juan Linietsky | |
Use libsquish to decompress DXT textures. | |||
2017-05-25 | Removed skybox support, added panorama support. Skybox support may come back ↵ | Juan Linietsky | |
eventually, but hope not. | |||
2017-05-25 | Merge pull request #8898 from vnen/screentouch-struct-class | Rémi Verschelde | |
Change InputEventScreenTouch from struct to class | |||
2017-05-25 | Merge pull request #8895 from nunodonato/newdefaultcolors | Rémi Verschelde | |
Improved default colors for the new theme | |||
2017-05-25 | Merge pull request #8891 from nunodonato/newmenu | Rémi Verschelde | |
Join text menus on the top-left, move shortcut buttons to new locations (Preliminary work towards achieving the changes discussed in #8865.) | |||
2017-05-25 | Merge pull request #8885 from capnm/fix-2d-editor-zoom | Rémi Verschelde | |
Fix 2D-editor mouse wheel zoom for x11. | |||
2017-05-25 | Merge pull request #8878 from BastiaanOlij/ios_make_arm64_default | Rémi Verschelde | |
Make arm64 the default option and set minimum to iOS 9 | |||
2017-05-25 | Merge pull request #8869 from Hinsbart/errors | Rémi Verschelde | |
Fix errors on engine startup. | |||
2017-05-24 | Join text menus on the top-left, move shortcut buttons to new location | Nuno Donato | |
2017-05-24 | Improved default colors for the new theme | Nuno Donato | |
Colors inspired from solarized themes. Also moved the theme settings to the Interface category. | |||
2017-05-24 | Change InputEventScreenTouch from struct to class | George Marques | |
2017-05-24 | Fix 2D-editor mouse wheel zoom (x11). | Martin Capitanio | |
Fixes #8888 | |||
2017-05-23 | Merge pull request #8884 from karroffel/gdnative-fixes | Thomas Herzog | |
[GDNative] fixed some functions that returned references | |||
2017-05-23 | [GDNative] fixed some functions that returned references | Karroffel | |
Those errors were introduced with #8821 (6fd217d). These functions need to return reference types, otherwise setting values on those containers does not work. | |||
2017-05-23 | Merge pull request #8881 from vnen/uwp-3 | Rémi Verschelde | |
Fix UWP compilation issues | |||
2017-05-23 | Fix UWP compilation issues | George Marques | |
Also fix VS2017 compilation problems. | |||
2017-05-23 | Merge pull request #8880 from vnen/fix-canvas-item-editor-crash | Rémi Verschelde | |
Fix crash when interacting with the 2d editor | |||
2017-05-23 | Fix crash when interacting with the 2d editor | George Marques | |
2017-05-23 | Make arm64 the default option and set minimum to iOS 9 | BastiaanOlij | |
2017-05-23 | Merge pull request #8877 from BastiaanOlij/fix_ios_godot3 | Rémi Verschelde | |
More fixes for iOS Godot 3.0 | |||
2017-05-23 | More fixes for iOS Godot 3.0 | BastiaanOlij | |
- nicely exit if initialisation fails - fix a few issues around new event handling - use 16bit single channel framebuffer as 32bit is not supported on iOS | |||
2017-05-23 | Merge pull request #8876 from BastiaanOlij/fix_vs15 | Rémi Verschelde | |
Fix a few issues compiling windows and using VS2015 and earlier | |||
2017-05-23 | -Fix the "set_val" call deferred, it was the only one.. closes #8742 | Juan Linietsky | |
-Removed redundant bind in input_event | |||
2017-05-23 | Fix stex import into black textures when lossless and lossy are selected, ↵ | Juan Linietsky | |
closes #8801 | |||
2017-05-23 | Fix a few issues compiling windows and using VS2015 and earlier | BastiaanOlij | |
2017-05-23 | fixed crash on code that checks InputEvent | Juan Linietsky | |
2017-05-23 | Merge pull request #8872 from volzhs/editor-theme-lineedit | Rémi Verschelde | |
Fix disabled style of LineEdit | |||
2017-05-23 | Fix disabled style of LineEdit | volzhs | |
2017-05-22 | Fix errors on engine startup. | Andreas Haas | |
Fixes a bunch of the most spammy console errors introduced by recent refactorings: - `AudioServerState` does not exist, this was the reference to it in the source. The surrounding code made it clear that `AudioServerLayout` was meant to be used instead. - `StreamCSVTranslation` same here, it's the only reference. I went with `Translation` here, but I'm not 100% sure on this one. - Some methods have been moved from `Texture` to `Image`, but the old bindings were still there. - A few `name == ""` errors related to duplicating nodes. | |||
2017-05-22 | Merge pull request #8863 from volzhs/editor-theme-new-node | Rémi Verschelde | |
Show description box on create new node window | |||
2017-05-22 | Merge pull request #8862 from volzhs/editor-theme-margin | Rémi Verschelde | |
Fit grid with label and component of editor | |||
2017-05-22 | Merge pull request #8861 from volzhs/editor-theme-filedialog | Rémi Verschelde | |
Show disabled item with proper color on FileDialog of editor theme | |||
2017-05-22 | Merge pull request #8786 from bojidar-bg/fix-astar-weight-scale | Rémi Verschelde | |
Fix weigth scale of A* being applied to the whole estimation | |||
2017-05-22 | Merge pull request #8850 from tagcup/astar_overestimate | Rémi Verschelde | |
Avoid overestimating the cost in AStar heuristics. | |||
2017-05-22 | Merge pull request #8853 from toger5/InputEvent_osx_fix | Rémi Verschelde | |
fixed osx input event | |||
2017-05-22 | Fix weigth scale of A* being applied to the whole path and estimation | Bojidar Marinov | |
Attempt to fix #8584 | |||
2017-05-22 | Show description box on create new node window | volzhs | |
2017-05-22 | Fit grid with label and component of editor | volzhs | |
2017-05-22 | Show disabled item with proper color on FileDialog of editor theme | volzhs | |
Fix #8635 | |||
2017-05-22 | added modifier key to scroll event | toger5 | |
2017-05-22 | fixed osx input event | toger5 | |
2017-05-22 | Merge pull request #8832 from Zireael07/vehicle-improvs-master | Rémi Verschelde | |
Expose wheel's contact to GDScript and set roll influence in editor [3.0] | |||
2017-05-22 | Merge pull request #8854 from toger5/fix_color_picker_crash | Rémi Verschelde | |
fixed crash when dragging to change color in color picker | |||
2017-05-22 | Merge pull request #8852 from voithos/bezier-controls-fix | Rémi Verschelde | |
Fix 2d path editor controls. | |||
2017-05-21 | fixed crash when dragging to change color in color picker | toger5 | |
2017-05-21 | Fix 2d path editor controls. | Zaven Muradyan | |
Fixes #502. This appears to have been broken due to a merge conflict after the InputEvents changes. | |||
2017-05-21 | Avoid overestimating the cost in AStar heuristics. | Ferenc Arn | |
This is a necessary condition for finding optimal solutions. This is achieved by simply requiring/ensuring that no weights are smaller than 1. Fixes #8584. | |||
2017-05-20 | Removal of InputEvent as built-in Variant type.. | Juan Linietsky | |
this might cause bugs I haven't found yet.. | |||
2017-05-20 | GDScript can now tell if the wheel is in contact with the ground; change ↵ | Zireael07 | |
roll influence of the wheel in editor |