| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | | | Remove Basis::set_scale and Basis::set_rotation_* functions. | Ferenc Arn | 2017-08-29 | 3 | -43/+0 | |
| | | | | | | | | | | | | | | | | | | | Those functions were added in #8277 but they did more harm than good. They're subtle, don't do what people think and requires users to understand the non-uniqueness of polar decomposition. They ended up confusing people. Until we store additional information enough to make a unique polar decomposition, these functions shouldn't be a part of Basis. | |||||
| * | | | Fix constant reimport on broken files, closes #9930 | Juan Linietsky | 2017-08-29 | 4 | -3/+51 | |
| |/ / | ||||||
| * | | Merge pull request #10745 from neikeq/fix-docdata-and-stuff | Juan Linietsky | 2017-08-29 | 5 | -27/+95 | |
| |\ \ | | | | | | | DocData and virtual method type hints fixes | |||||
| | * | | Fixes missing default arguments in MethodInfo | Ignacio Etcheverry | 2017-08-29 | 1 | -1/+2 | |
| | | | | ||||||
| | * | | DocData and type hints fixes | Ignacio Etcheverry | 2017-08-29 | 4 | -26/+93 | |
| | | | | | | | | | | | | | | | | | | | | | | - Makes vararg methods automatically use PROPERTY_USAGE_NIL_IS_VARIANT on return types - Completely removes the ":type" suffix for method names. Virtual methods must use the MethodInfo constructors that takes Variant::Type or PropertyHint as the first parameter for the return type (with CLASS_INFO as a helper to get the PropertyInfo). Parameters must use PROPERTY_HINT_RESOURCE_TYPE and hint string. - PROPERTY_USAGE_NIL_IS_VARIANT is no longer needed for parameters, because parameters cannot be void. - Adds missing PROPERTY_USAGE_NIL_IS_VARIANT to virtual and built-in methods that return Variant. | |||||
| * | | | Made some methods to check method/signal availability in GDScript, closes #9800 | Juan Linietsky | 2017-08-29 | 1 | -0/+6 | |
| | | | | ||||||
| * | | | Removed ParamDef and ParamHint structs | Wilson E. Alvarez | 2017-08-29 | 2 | -28/+0 | |
| | | | | ||||||
| * | | | -Some fixes to code completion. | Juan Linietsky | 2017-08-28 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | -Fix getter in code completion being displayed when it shouldn't -Clean up preview generation for editors and exposed it as editor plugin | |||||
| * | | | Make build scripts Python3 compatible | Matthias Hoelzl | 2017-08-27 | 1 | -2/+2 | |
| |/ / | | | | | | | | | | | | | | | - The Windows, UWP, Android (on Windows) and Linux builds are tested with Scons 3.0 alpha using Python 3. - OSX and iOS should hopefully work but are not tested since I don't have a Mac. - Builds using SCons 2.5 and Python 2 should not be impacted. | |||||
| * | | Dead code tells no tales | Rémi Verschelde | 2017-08-27 | 22 | -1215/+8 | |
| | | | ||||||
| * | | Use HTTPS URL for Godot's website in the headers | Rémi Verschelde | 2017-08-27 | 234 | -234/+234 | |
| | | | ||||||
| * | | Re-apply clang-format to all files | Rémi Verschelde | 2017-08-27 | 2 | -5/+5 | |
| | | | | | | | | | Some badly formatted code has managed to pass through our CI... | |||||
| * | | MethodBind: Adds operator== to compare by id | Ignacio Etcheverry | 2017-08-26 | 1 | -0/+1 | |
| | | | ||||||
| * | | Merge pull request #10658 from henkz1/android-build | Rémi Verschelde | 2017-08-26 | 1 | -3/+3 | |
| |\ \ | | | | | | | Fix Android build | |||||
| | * | | Fix refactored Object::cast_to in NO_SAFE_CAST branch | Henrik Andersson | 2017-08-26 | 1 | -3/+3 | |
| | | | | ||||||
| * | | | Fix double single quotes in `connect` error print | Poommetee Ketson | 2017-08-27 | 1 | -1/+1 | |
| | | | | ||||||
| * | | | Merge pull request #10648 from Xrayez/image-get-size | Rémi Verschelde | 2017-08-26 | 2 | -0/+7 | |
| |\ \ \ | | | | | | | | | Add handy get_size() method to Image class | |||||
| | * | | | Add handy get_size() method to Image class | Andrii Doroshenko (Xrayez) | 2017-08-26 | 2 | -0/+7 | |
| | |/ / | ||||||
| * / / | Cleanup tons of obsolete commented out code | Rémi Verschelde | 2017-08-26 | 1 | -12/+9 | |
| |/ / | | | | | | | | | Mostly in EditorNode, dropping some obsolete editor plugins and also a cleanup of ProjectSettings/EditorSettings. | |||||
| * | | Convert Object::cast_to() to the static version | Hein-Pieter van Braam | 2017-08-24 | 13 | -74/+34 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | 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/ | |||||
| * | | Add a static version of Object::cast_to() | Hein-Pieter van Braam | 2017-08-24 | 1 | -0/+40 | |
| | | | | | | | | | | | This is to prepare to replace all instances of the member version of cast_to(). | |||||
| * | | Show proper string with InputEvent.as_text() | volzhs | 2017-08-25 | 2 | -0/+84 | |
| | | | ||||||
| * | | GCC fixes | Juan Linietsky | 2017-08-24 | 1 | -2/+0 | |
| | | | ||||||
| * | | -Code completion for enumerations | Juan Linietsky | 2017-08-24 | 2 | -8/+17 | |
| | | | | | | | | | -Disabled GDNative and GDNativeScript so build compiles again | |||||
| * | | Changed MethodBind API to request information from methods. It's much claner ↵ | Juan Linietsky | 2017-08-23 | 9 | -109/+131 | |
| | | | | | | | | | | | | | now. Also changed PropertyInfo to include informatino about class names. | |||||
| * | | Moved member variables to initializer list | Wilson E. Alvarez | 2017-08-22 | 1 | -7/+7 | |
| | | | ||||||
| * | | Merge pull request #10520 from RandomShaper/fix-double-parsing | Juan Linietsky | 2017-08-22 | 1 | -3/+1 | |
| |\ \ | | | | | | | Fix tokenization of doubles | |||||
| | * | | Fix tokenization of doubles | Pedro J. Estébanez | 2017-08-21 | 1 | -3/+1 | |
| | | | | | | | | | | | | | Fixes #9600. | |||||
| * | | | Merge pull request #10487 from marcelofg55/curscr_as_default | Rémi Verschelde | 2017-08-22 | 3 | -9/+9 | |
| |\ \ \ | | | | | | | | | p_screen param from get_screen_* funcs now default to the current screen | |||||
| | * | | | p_screen param from get_screen_* funcs now default to the current screen | Marcelo Fernandez | 2017-08-21 | 3 | -9/+9 | |
| | | | | | ||||||
| * | | | | Merge pull request #10340 from Rubonnek/remove-unnecessary-assignments | Rémi Verschelde | 2017-08-22 | 2 | -3/+1 | |
| |\ \ \ \ | | | | | | | | | | | Removed unnecessary assignments | |||||
| | * | | | | Removed unnecessary assignments | Wilson E. Alvarez | 2017-08-21 | 2 | -3/+1 | |
| | | | | | | ||||||
| * | | | | | Merge pull request #10254 from marcelofg55/master | Rémi Verschelde | 2017-08-22 | 2 | -1/+7 | |
| |\ \ \ \ \ | | | | | | | | | | | | | Added notification const NOTIFICATION_WM_ABOUT | |||||
| | * | | | | | Added notification const NOTIFICATION_WM_ABOUT | Marcelo Fernandez | 2017-08-17 | 2 | -1/+7 | |
| | | | | | | | ||||||
| * | | | | | | Merge pull request #10351 from neikeq/enums-are-for-the-weak | Juan Linietsky | 2017-08-21 | 21 | -780/+910 | |
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | ClassDB: Provide the enum name of integer constants | |||||
| | * | | | | | | ClassDB: Provide the enum name of integer constants | Ignacio Etcheverry | 2017-08-20 | 21 | -780/+910 | |
| | | |_|/ / / | |/| | | | | ||||||
| * | | | | | | Merge pull request #10415 from tagcup/euler_hack | Rémi Verschelde | 2017-08-22 | 1 | -13/+4 | |
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | Fix incorrect workaround for pure Y (X) rotations in XYZ (YXZ) conven… | |||||
| | * | | | | | | Fix incorrect workaround for pure Y (X) rotations in XYZ (YXZ) convention. | Ferenc Arn | 2017-08-18 | 1 | -13/+4 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #10352. | |||||
| * | | | | | | | Merge pull request #10225 from Noshyaar/map | Rémi Verschelde | 2017-08-22 | 1 | -2/+8 | |
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | GDScript Built-in: add inverse_lerp & range_lerp | |||||
| | * | | | | | | | GDScript Built-in: add inverse_lerp & range_lerp | Poommetee Ketson | 2017-08-18 | 1 | -2/+8 | |
| | | | | | | | | | ||||||
| * | | | | | | | | Merge pull request #10433 from djrm/pr_svg_support | Rémi Verschelde | 2017-08-21 | 2 | -4/+4 | |
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | SVG support | |||||
| | * | | | | | | | | Added support for SVG | Daniel J. Ramirez | 2017-08-20 | 2 | -4/+4 | |
| | | | | | | | | | | ||||||
| * | | | | | | | | | Merge pull request #10484 from Sipaha/pr_mt_queue_deadlock_fix | Rémi Verschelde | 2017-08-21 | 2 | -18/+47 | |
| |\ \ \ \ \ \ \ \ \ | |_|_|_|_|_|/ / / |/| | | | | | | | | Fix deadlock in CommandQueueMT | |||||
| | * | | | | | | | | Move wait_for_flush out of queue lock | Sipaha | 2017-08-21 | 2 | -18/+47 | |
| | |/ / / / / / / | ||||||
| * | | | | | | | | Merge pull request #10471 from akien-mga/args-doubledash | Rémi Verschelde | 2017-08-21 | 3 | -12/+0 | |
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | Third take at making command-line arguments more UNIX-like + main.cpp and help cleanup | |||||
| | * | | | | | | | | Fixes for new two-dash long command line arguments | Rémi Verschelde | 2017-08-21 | 3 | -12/+0 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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 | |||||
| * | | | | | | | | | Fix binary object marshalling, closes #9472 | Juan Linietsky | 2017-08-21 | 1 | -1/+6 | |
| |/ / / / / / / / | ||||||
| * / / / / / / / | simplify the way window is allowed to steal focus, no longer relying on ↵ | Juan Linietsky | 2017-08-20 | 1 | -2/+0 | |
| |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | project.godot. Closes #9459 | |||||
| * | | | | | | | Merge pull request #10319 from neikeq/pr-engine-editor-hint | Juan Linietsky | 2017-08-20 | 4 | -0/+28 | |
| |\ \ \ \ \ \ \ | |_|_|/ / / / |/| | | | | | | Adds Engine::is_editor_hint() method | |||||
| | * | | | | | | Adds editor_hint to Engine class | Ignacio Etcheverry | 2017-08-19 | 4 | -0/+28 | |
| | | |_|/ / / | |/| | | | | ||||||
