Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-02-14 | Merge pull request #15564 from RandomShaper/adpod-topmost | Rémi Verschelde | |
Add new window setting: always on top | |||
2018-02-12 | Added OS::center_window to center the window precisely on desktop platforms | Marcelo Fernandez | |
2018-01-12 | get_target_fps and set_target_fps now both use an int | Paul Joannon | |
2018-01-12 | Bind many more properties to scripts | Bojidar Marinov | |
Notable potentially breaking changes: - PROPERTY_USAGE_NOEDITOR is now PROPERTY_USAGE_STORAGE | PROPERTY_USAGE_NETWORK, without PROPERTY_USAGE_INTERNAL - Some properties were renamed, and sometimes even shadowed by new ones - New getter methods (some virtual) were added | |||
2018-01-08 | Merge pull request #15337 from ↵ | Rémi Verschelde | |
touilleMan/fix-classdb_get_method_list-without-instrospection Fix _ClassDB::get_method_list when instrospection is disabled | |||
2018-01-05 | Print error if a resource can't load from script, fixes #15313 | Juan Linietsky | |
2018-01-05 | Add new window setting: always on top | Pedro J. Estébanez | |
Implemented for Windows and Linux. | |||
2018-01-05 | Add missing copyright headers and fix formatting | Rémi Verschelde | |
Using `misc/scripts/fix_headers.py` on all Godot files. Some missing header guards were added, and the header inclusion order was fixed in the Bullet module. | |||
2018-01-04 | Fix _ClassDB::get_method_list to returns only what's available when ↵ | Emmanuel Leblond | |
introspection is disabled | |||
2018-01-01 | Update copyright statements to 2018 | Rémi Verschelde | |
Happy new year to the wonderful Godot community! | |||
2017-12-06 | Merge pull request #12603 from GodotExplorer/beautify-json | Rémi Verschelde | |
Add indent and sort keys support for JSON.print | |||
2017-11-17 | Rename OS::get_data_dir to OS::get_user_data_dir | Rémi Verschelde | |
Will be needed to avoid confusion with system data path (XDG_DATA_HOME) and editor data dir in upcoming refactoring. | |||
2017-11-14 | Move singleton management from ProjectSettings to Engine | Leon Krause | |
2017-11-07 | Add indent and sort keys support for JSON.print | Geequlim | |
2017-11-05 | Basic docs for Geometry plus two new functions | Bernhard Liebl | |
2017-10-30 | Add Colemak keybindings to editor for osx | N0hbdy | |
2017-10-04 | Merge pull request #11823 from endragor/virtual-keyboard-height | Gilles Roudiere | |
Allow to obtain virtual keyboard height | |||
2017-10-04 | Allow to obtain virtual keyboard height | Ruslan Mustakov | |
On mobile platforms virtual keyboards take up significant amount of screen space and UI containing a text box may need to be adjusted after the keyboard appears to keep the text box visible to user. This commit adds a way to obtain virtual keyabord height so that controls are aware of how much they need to move. | |||
2017-10-03 | fixed the OS.has_feature() API, and added support for 32 and 64. | Juan Linietsky | |
2017-10-03 | Merge pull request #11782 from eska014/persistent-userfs-test | Hein-Pieter van Braam | |
Add OS::is_userfs_persistent, allow starting HTML5 platform in private mode | |||
2017-10-02 | Add OS::is_userfs_persistent to check user:// persistence | Leon Krause | |
Allows starting HTML5 export when IndexedDB is not available. | |||
2017-09-30 | Renamed fixed_process to physics_process | AndreaCatania | |
2017-09-20 | Rename pos to position in user facing methods and variables | letheed | |
Rename user facing methods and variables as well as the corresponding C++ methods according to the folloming changes: * pos -> position * rot -> rotation * loc -> location C++ variables are left as is. | |||
2017-09-17 | Merge pull request #11294 from karroffel/json-object | Thomas Herzog | |
added JSON singleton | |||
2017-09-16 | Adds _OS::PowerState enum | Ignacio Etcheverry | |
2017-09-15 | added JSON singleton | karroffel | |
There was no way to access JSON functionality in scripting languages apart from GDScript because the JSON class wasn't exposed to ClassDB. | |||
2017-09-13 | Fix enums bindings | Maxim Sheronov | |
Add missed bindings for enums Move some enums to class to have correct output of api.json | |||
2017-09-02 | Fix typos 'a' and 'an' | Poommetee Ketson | |
2017-09-01 | Fix signed and unsigned comparisons | Hein-Pieter van Braam | |
The first in my quest to make Godot 3.x compile with -Werror on GCC7 | |||
2017-08-27 | Use HTTPS URL for Godot's website in the headers | Rémi Verschelde | |
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-22 | Merge pull request #10487 from marcelofg55/curscr_as_default | Rémi Verschelde | |
p_screen param from get_screen_* funcs now default to the current screen | |||
2017-08-22 | Merge pull request #10340 from Rubonnek/remove-unnecessary-assignments | Rémi Verschelde | |
Removed unnecessary assignments | |||
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-21 | p_screen param from get_screen_* funcs now default to the current screen | Marcelo Fernandez | |
2017-08-21 | Removed unnecessary assignments | Wilson E. Alvarez | |
2017-08-21 | Fixes for new two-dash long command line arguments | Rémi Verschelde | |
- Fixes some single-dash leftovers that were missed in the previous commit - Reorder the help output for clarity, and document missing options - Drop obsolete options: --noop, --pack, --editor-scene, --level, --import, --import-script, --no-quit - Improve error message on malformed arguments and do not display help on error - Always use long form of arguments when starting a new Godot process from C++, for clarity and easy grepping - Cleanup obsolete code here and there | |||
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-19 | Revert "Second take at making command-line arguments more UNIX-like + ↵ | Juan Linietsky | |
main.cpp and help cleanup" | |||
2017-08-19 | Fixes for new two-dash long command line arguments | Rémi Verschelde | |
- Fixes some single-dash leftovers that were missed in the previous commit - Reorder the help output for clarity, and document missing options - Drop obsolete options: --noop, --pack, --editor-scene, --level, --import, --import-script, --no-quit - Improve error message on malformed arguments and do not display help on error - Cleanup obsolete code here and there | |||
2017-08-19 | Adds editor_hint to Engine class | Ignacio Etcheverry | |
2017-08-16 | Synchronize parameter names in definition and declaration | TwistedTwigleg | |
Fixes #10244. | |||
2017-08-10 | Removes type information from method binds | Ignacio Etcheverry | |
2017-08-07 | Makes all Godot API's methods Lower Case | Indah Sylvia | |
2017-07-23 | Add object type hint for docs | Poommetee Ketson | |
2017-07-19 | -Renamed GlobalConfig to ProjectSettings, makes more sense. | Juan Linietsky | |
-Added system for feature overrides, it's pretty cool :) | |||
2017-07-19 | Add object type hint for docs | Poommetee Ketson | |
2017-07-13 | Add GZIP compression support | George Marques | |
- Fix a wrong call in PoolByteArray::compress | |||
2017-07-11 | IME window follow the input cursor. | geequlim | |
Abstruct set_ime_position to OS class. Update ime position for LineEdit and TextEdit. |