Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-08-30 | Merge pull request #10378 from RandomShaper/nav-keep-start-end | Rémi Verschelde | |
Guarantee start & end points are returned by Navigation2D | |||
2017-08-30 | Merge pull request #10786 from hpvb/fix-crash-on-early-dialog | Rémi Verschelde | |
Fix a crash when an early dialog tries to appear | |||
2017-08-30 | Merge pull request #10361 from RandomShaper/tilemap-global-mtl | Rémi Verschelde | |
Let TileMap apply its material | |||
2017-08-30 | Fix a crash when an early dialog tries to appear | Hein-Pieter van Braam | |
This changes the order of creating some of the dialogs that may appear during project import/startup. It is possible for the 'accept' dialog to be required before it is initialized. This moves all of these dialogs to earlier in the constructor so this can't happen. | |||
2017-08-30 | Improved default directional shadow params, added bias split scale, closes #9828 | Juan Linietsky | |
2017-08-30 | Merge pull request #10782 from hpvb/fix-gdnative-10778 | Rémi Verschelde | |
Remove 10778 related methods from GDNative | |||
2017-08-30 | Remove 10778 related methods from GDNative | Hein-Pieter van Braam | |
After #10778 master didn't build any longer with GDNative. This removes the methods removed in that PR from the GDNative bindings for Basis also. | |||
2017-08-30 | AutoUse Pencil on Polygon creation | Scayze | |
2017-08-30 | Merge pull request #10743 from djrm/pr_improved_spatial_gizmo | Rémi Verschelde | |
Better spatial gizmo. | |||
2017-08-30 | Merge pull request #10727 from hoelzl/vs2017 | Rémi Verschelde | |
Generate project files for VS2017 | |||
2017-08-30 | Merge pull request #10746 from cryptonaut/issue9187-3.0 | Rémi Verschelde | |
Cleaned up logic in Tween::_tween_process(), fixes #9187 (3.0) | |||
2017-08-30 | Merge pull request #10750 from Rubonnek/fix-duplicate-script-changed-signal | Rémi Verschelde | |
Renamed 'script_changed' signal in the script editor plugin to 'edited_script_changed' | |||
2017-08-30 | Merge pull request #10778 from tagcup/basis_set_rotscale | Rémi Verschelde | |
Remove Basis::set_scale and Basis::set_rotation_* functions. | |||
2017-08-30 | Merge pull request #10774 from djrm/pr_gizmo_fixes | Rémi Verschelde | |
Fixed problem with highlight boxes not updating on translation | |||
2017-08-30 | Merge pull request #10776 from hpvb/fix-10758 | Rémi Verschelde | |
Disable -ffast-math for etc2comp | |||
2017-08-30 | Disable -ffast-math for etc2comp | Hein-Pieter van Braam | |
Apparently -ffast-math generates incorrect code with recent versions of GCC and Clang. The manual page for GCC warns about this possibility. In my tests it doesn't actually appear to be measurably slower in this case, and this is used in a batch process so it seems safe to disable this. This fixes #10758 and fixes #10070 | |||
2017-08-30 | Merge pull request #10747 from endragor/fix-gdnative-apigen | Thomas Herzog | |
Fix GDNative API description generator | |||
2017-08-30 | Fix GDNative API generator after changes to MethodBind | Ruslan Mustakov | |
2017-08-30 | Add enums in GDNative API generator | Ruslan Mustakov | |
2017-08-29 | Remove Basis::set_scale and Basis::set_rotation_* functions. | Ferenc Arn | |
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. | |||
2017-08-29 | Changed defaults, as it seems to be obviousy better to keep materials ↵ | Juan Linietsky | |
outside by default.. | |||
2017-08-29 | Added nice icon to show when a file is broken on import. | Juan Linietsky | |
2017-08-29 | Fix constant reimport on broken files, closes #9930 | Juan Linietsky | |
2017-08-29 | Merge pull request #10771 from neikeq/pr-improve-build-callbacks | Juan Linietsky | |
Improve build callbacks | |||
2017-08-29 | Merge pull request #10745 from neikeq/fix-docdata-and-stuff | Juan Linietsky | |
DocData and virtual method type hints fixes | |||
2017-08-29 | Fixed problem with highlight boxes not updating on translation | Daniel J. Ramirez | |
2017-08-29 | Merge pull request #10772 from djrm/pr_icons | Juan Linietsky | |
Improved and added some icons | |||
2017-08-29 | Improved and added some icons | Daniel J. Ramirez | |
2017-08-29 | Improve build callbacks | Ignacio Etcheverry | |
- Build callbacks now return bool to determine if the build was successful. If the build fails, the editor won't run the game. - Makes sure build callbacks are called after saving the scene ("Save Before Running" option). | |||
2017-08-29 | Changed bools to uint32_t as this may be a compiler bug.. | Juan Linietsky | |
2017-08-29 | Makes built-in vararg methods actual vararg methods | Ignacio Etcheverry | |
- Removes hardcoded parameters from built-in vararg methods and adds METHOD_FLAG_VARARG to them. - Makes EditorHelp display built-in vararg methods correctly. | |||
2017-08-29 | Fixes missing default arguments in MethodInfo | Ignacio Etcheverry | |
2017-08-29 | DocData and type hints fixes | Ignacio Etcheverry | |
- 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. | |||
2017-08-29 | Made some methods to check method/signal availability in GDScript, closes #9800 | Juan Linietsky | |
2017-08-29 | Generate project files for VS2017 | Matthias Hoelzl | |
2017-08-29 | -Fixed screen edge SSAO filter, fixes #9678 | Juan Linietsky | |
-Raised the SSAO limits, making the effect a lot more useful -Still pending to enable tresholding to avoid some hollow places | |||
2017-08-29 | Renamed 'script_changed' signal in the script editor plugin to ↵ | Wilson E. Alvarez | |
'edited_script_changed' | |||
2017-08-29 | removed DISCARD built in variable, replaced by actual discard GLSL ↵ | Juan Linietsky | |
instruction, fixes #9677 | |||
2017-08-29 | Merge pull request #10739 from Rubonnek/removed-paramdef-paramhint | Rémi Verschelde | |
Removed ParamDef and ParamHint structs | |||
2017-08-29 | -Fixes to how collada generates tangents (use SurfaceTool), closes #9562 | Juan Linietsky | |
-Fix to gridmap cell size (wrong property type) | |||
2017-08-29 | Merge pull request #10754 from bojidar-bg/10723-fix-shadows | Rémi Verschelde | |
Fix #10723, a regression from 7a07895 | |||
2017-08-29 | Fix #10723, a regression from 7a07895 | Bojidar Marinov | |
Using @akien-mga's patch | |||
2017-08-29 | Removed ParamDef and ParamHint structs | Wilson E. Alvarez | |
2017-08-29 | Cleaned up logic in Tween::_tween_process(), fixes #9187 | cryptonaut | |
2017-08-29 | Merge pull request #10716 from Noshyaar/pr-update | Rémi Verschelde | |
Change editor update_mode to boolean (update_always) | |||
2017-08-29 | Merge pull request #10704 from Noshyaar/pr-scene | Rémi Verschelde | |
EditorNode: enhance open scene error dialog | |||
2017-08-29 | Merge pull request #10705 from djrm/pr_gizmo_icons | Rémi Verschelde | |
Added missing gizmo icons and fixed ugly looking gizmo icons. | |||
2017-08-29 | Merge pull request #10741 from henkz1/android-export | Rémi Verschelde | |
Android Fix export of 32 Bits Framebuffer option | |||
2017-08-29 | Merge pull request #10731 from Noshyaar/pr-save | Rémi Verschelde | |
EditorNode: fix scene save over others | |||
2017-08-28 | Better spatial gizmo. | Daniel J. Ramirez | |
Now it is posible to move spatial nodes along a plane. |