Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-29 | Merge pull request #10745 from neikeq/fix-docdata-and-stuff | Juan Linietsky | |
DocData and virtual method type hints fixes | |||
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 | 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-28 | Merge pull request #10614 from poke1024/realtime-polygon-2d | Rémi Verschelde | |
Adds realtime updates to polygon 2d editing | |||
2017-08-28 | -Some fixes to code completion. | Juan Linietsky | |
-Fix getter in code completion being displayed when it shouldn't -Clean up preview generation for editors and exposed it as editor plugin | |||
2017-08-28 | Merge pull request #10667 from Zylann/freelook_inertia | Rémi Verschelde | |
Added freelook inertia | |||
2017-08-27 | -Moved script run to editor, removed from project | Juan Linietsky | |
-fixed to code completion -fix shader crash bug reported by tagcup | |||
2017-08-27 | Dead code tells no tales | Rémi Verschelde | |
2017-08-27 | -Largely rewrote gridmap to simplify it | Juan Linietsky | |
-Got editor working again -Added a current-floor marker on selection | |||
2017-08-27 | Use HTTPS URL for Godot's website in the headers | Rémi Verschelde | |
2017-08-27 | Added freelook inertia | Marc Gilleron | |
2017-08-27 | Merge pull request #10591 from Rubonnek/possible-null-ptr-dereference | Rémi Verschelde | |
Added/Fixed null pointer checks | |||
2017-08-27 | Merge pull request #10625 from Rubonnek/fixed-leaks | Rémi Verschelde | |
Fixed several memory leaks | |||
2017-08-26 | Added/Fixed null pointer checks | Wilson E. Alvarez | |
2017-08-26 | Add several missing Null checks in _notification | Hein-Pieter van Braam | |
This fixes #6118 | |||
2017-08-26 | Cleanup tons of obsolete commented out code | Rémi Verschelde | |
Mostly in EditorNode, dropping some obsolete editor plugins and also a cleanup of ProjectSettings/EditorSettings. | |||
2017-08-26 | -Split EditorPlugin into EditorPlugin and EditorInterface | Juan Linietsky | |
-Added EditorInterface to EditorScript -Added functions to save the scene to EditorInterface | |||
2017-08-26 | Changed camera interpolation to work when LMB is pressed and no modifiers ↵ | Juan Linietsky | |
are pressed | |||
2017-08-26 | polygon2d realtime editing | Bernhard Liebl | |
editing nodes in the polygon2d editor now updates the polygon in realtime; the previous outline is shown, but this can be disabled via a new editor setting | |||
2017-08-26 | -Massive clean up to gizmos | Juan Linietsky | |
-Make sure handles are always visible (on top) -Fixed instanced scene selection (should work properly now) -Added interpolated camera -Customizable gizmo colors in editor settings | |||
2017-08-25 | Editor: Add some more translatable strings. | Andreas Haas | |
2017-08-25 | Fixed several memory leaks | Wilson E. Alvarez | |
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-24 | -Code completion for enumerations | Juan Linietsky | |
-Disabled GDNative and GDNativeScript so build compiles again | |||
2017-08-23 | Merge pull request #10573 from tagcup/gizmo_aabb_scaling_order | Rémi Verschelde | |
Fix the order of transformations for selection bounding box in spatial editor. | |||
2017-08-22 | Fix the order of transformations for selection bounding box in spatial editor. | Ferenc Arn | |
This was broken in #7438 where the ordering of scaling in Basis::scale() was fixed, but this line of code (which relied on the incorrect behavior) wasn't updated correctly. Fixes #9894. | |||
2017-08-22 | Add ability to undo auto-indent | Pedro J. Estébanez | |
Closes #10420. | |||
2017-08-22 | Merge pull request #10538 from groud/fix_useless_separator | Rémi Verschelde | |
Fix unneeded separator in Script Editor's Debug menu | |||
2017-08-22 | Fix uneeded separator | Gilles Roudiere | |
2017-08-22 | Merge pull request #10507 from toger5/override_code_them_bg | Rémi Verschelde | |
added setting to override the theme background with editor theme color | |||
2017-08-22 | Add null check to ScriptEditor get_current_tab_control() call | Hein-Pieter van Braam | |
This fixes #10517 | |||
2017-08-21 | added setting to override the theme background with editor theme color | toger5 | |
2017-08-21 | Removed unnecessary assignments | Wilson E. Alvarez | |
2017-08-20 | Merge pull request #10319 from neikeq/pr-engine-editor-hint | Juan Linietsky | |
Adds Engine::is_editor_hint() method | |||
2017-08-20 | Merge pull request #10476 from Paulb23/delete_current_line_issue_9643 | Rémi Verschelde | |
Delete current line, issue 9643 | |||
2017-08-20 | Merge pull request #10460 from Zylann/orbit_sensitivity | Rémi Verschelde | |
Added option for mouse orbit sensitivity | |||
2017-08-20 | Merge pull request #10455 from groud/control_margin_fixes | Rémi Verschelde | |
Some control fixes and removed other useless lines | |||
2017-08-20 | Delete current line, issue 9643 | Paulb23 | |
2017-08-19 | Added option for mouse orbit sensitivity | Marc Gilleron | |
2017-08-19 | Some control fixes and removed useless lines | Gilles Roudiere | |
2017-08-19 | Removed style box border for script panel. Fixes #10410 | toger5 | |
2017-08-19 | Removes editor_hint from SceneTree | Ignacio Etcheverry | |
2017-08-18 | -Volume sliders, mute, solo and fx bypass are functional, closes #9021 | Juan Linietsky | |
-Fixed tree reselect, makes reselecting an audio bux FX work | |||
2017-08-18 | Update script signals in real-time when script changes. Fixes #8980 | Juan Linietsky | |
2017-08-18 | Properly manage drawing of primitives when they lack an area, fixes #8930 | Juan Linietsky | |
2017-08-17 | Add closest_power_of_2 func and implement mix_rate/latency on OS X | Marcelo Fernandez | |
2017-08-16 | Tilemap Editor: Setting to hide tile info in the menu bar | Rémi Verschelde | |
Based on e513ecb7a14560d7238408a16a3b855863fd6df9. | |||
2017-08-16 | Merge pull request #10300 from H4kor/anchor | Rémi Verschelde | |
Show Anchor even when Control-Node is hidden |