Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-05-24 | C#: Implement ScriptInstance::to_string | Ignacio Etcheverry | |
Create a blacklist of methods that must not be generated. Includes: "to_string", "_to_string" and "_init". | |||
2019-05-23 | Merge pull request #29134 from ibrahn/fix-crashhandler-msg-lookup | Rémi Verschelde | |
Check project settings live before lookup in crash handler | |||
2019-05-23 | Check project settings live before lookup in crash handler | Ibrahn Sahir | |
In x11, windows and osx crash handlers, check project settings exists before looking up the crash handler message setting. Avoids crashing the crash handler when handling a crash outside project settings lifetime. Instead omitting the configurable message and continuing with trace dump. | |||
2019-05-23 | Merge pull request #29125 from rodolforg/fix_spatial_look_at_affecting_scale | Rémi Verschelde | |
fix un-scaling in Spatial::look_at_from_position | |||
2019-05-23 | Merge pull request #29124 from AMS21/fix-28091 | Rémi Verschelde | |
Fixed naming issue when duplicating an export | |||
2019-05-23 | Merge pull request #29123 from ibrahn/init-x11-nullcursor-color | Rémi Verschelde | |
Fixed uninitialised variable in x11 null cursor creation | |||
2019-05-23 | fix un-scaling in Spatial::look_at_from_position | Rodolfo Ribeiro Gomes | |
As mentioned in https://github.com/godotengine/godot/pull/26897#issuecomment-491178089 the look-at scaling issue solved by PR #26897 happens also in another look-at method. Spatial::look_at_from_position() also does not have same input checking Spatial::look_at() has. Therefore, I fixed it too at same time. | |||
2019-05-23 | Fixed naming issue when duplicating an export | AMS21 | |
2019-05-23 | Merge pull request #28738 from 2shady4u/master | Rémi Verschelde | |
Added native binding for dictionary duplication | |||
2019-05-23 | Merge pull request #29031 from BastiaanOlij/alpha_shadow | Rémi Verschelde | |
Implement shadow to opacity | |||
2019-05-23 | Fixed uninitialised variable in x11 null cursor creation | Ibrahn Sahir | |
Fully initialised color var. Clarified intent a little with comments/layout. | |||
2019-05-23 | Merge pull request #28987 from Xrayez/geometry-clipper-bind | Rémi Verschelde | |
Expose 2D polygon boolean operations in Geometry singleton | |||
2019-05-23 | Added native binding for dictionary duplication | shaderbeast | |
Added entry in gdnative_api.json Added function to header as well Fixed versioning | |||
2019-05-23 | Merge pull request #29109 from RandomShaper/fix_onion_skinning | Rémi Verschelde | |
Fix onion skinning | |||
2019-05-23 | Merge pull request #28847 from YeldhamDev/textedit_wrap_highlight_fix | Rémi Verschelde | |
Fix 'TextEdit's line wrapping being highlighted incorrectly | |||
2019-05-22 | Fix 'TextEdit's line wrapping being highlighted incorrectly | Michael Alexsander Silva Dias | |
Fixes #22867. | |||
2019-05-22 | Fix 2D bones ignored by onion skinning | Pedro J. Estébanez | |
Fixes #27819. | |||
2019-05-22 | Expose 2D polygon boolean operations in Geometry singleton | Andrii Doroshenko (Xrayez) | |
Clipper 6.4.2 is used internally to perform polypaths clipping, as well as inflating/deflating polypaths. The following methods were added: ``` Geometry.merge_polygons_2d(poly_a, poly_b) # union Geometry.clip_polygons_2d(poly_a, poly_b) # difference Geometry.intersect_polygons_2d(poly_a, poly_b) # intersection Geometry.exclude_polygons_2d(poly_a, poly_b) # xor Geometry.clip_polyline_with_polygon_2d(poly_a, poly_b) Geometry.intersect_polyline_with_polygon_2d(poly_a, poly_b) Geometry.offset_polygon_2d(polygon, delta) # inflate/deflate Geometry.offset_polyline_2d(polyline, delta) # returns polygons // This one helps to implement CSG-like behaviour: Geometry.transform_points_2d(points, transform) ``` All the methods return an array of polygons/polylines. The resulting polygons could possibly be holes which could be checked with `Geometry.is_polygon_clockwise()` which was exposed to scripting as well. | |||
2019-05-22 | Merge pull request #29003 from Xrayez/clipper-6.4.2-exceptions-fix | Rémi Verschelde | |
Build Clipper with `tools=no` and patch it to auto-disable exceptions | |||
2019-05-22 | Merge pull request #29022 from mrcdk/preview_generator_fixes | Rémi Verschelde | |
Add some extra functions to EditorResourcePreviewGenerator | |||
2019-05-22 | Build Clipper with `tools=no` and patch it to auto-disable exceptions | Andrii Doroshenko (Xrayez) | |
Reverts "Build polygon clipper only in tools builds" (see #17319) which allows to build Clipper with tools disabled (release) and because of that, Clipper has to be patched to optionally disable exceptions in order to be built on some platforms. Patched Clipper 6.4.2 to be compiled with exceptions enabled/disabled. and ensure that Clipper-specific exception macros are defined: don't use exceptions by default unless exception handling is detected. Compilation with exceptions will be determined by various C++ exceptions defines: * ` __cpp_exceptions` is part of C++ feature testing macros (since C++98); * `__EXCEPTIONS` is used by some GNU compilers; * `_CPPUNWIND` is used by MSVC. The user can override specific exceptions behavior via corresponding `*_USER` macros (i.e. compiling for embedded systems). | |||
2019-05-22 | Merge pull request #29096 from karroffel/gdnative-variant-evaluate-fix | Rémi Verschelde | |
[GDNative] fix godot_variant_evaluate function | |||
2019-05-22 | Merge pull request #29087 from ibrahn/init-text-gui-vars | Rémi Verschelde | |
Initialize readonly/editable in LineEdit and TextEdit controls | |||
2019-05-22 | Merge pull request #29085 from YeldhamDev/node2d_bones_undoredo | Rémi Verschelde | |
Add undo/redo to Node2D bone creation | |||
2019-05-22 | Merge pull request #29098 from akien-mga/lf-utf8 | Rémi Verschelde | |
Update gitattributes to enforce LF, fix UTF-8 misencoding of thirdparty files | |||
2019-05-22 | Merge pull request #29074 from YeldhamDev/theme_editor_panel_fix | Rémi Verschelde | |
Fix bottom panel visibility behaviour in the theme editor | |||
2019-05-22 | Fix non UTF8-encoded thirdparty files | Rémi Verschelde | |
2019-05-22 | Merge pull request #29095 from Chaosus/exp_focus | Yuri Roubinsky | |
Makes the expression node to apply only when the focus leaves out | |||
2019-05-22 | Update .gitattributes to encompass all text files | Rémi Verschelde | |
2019-05-22 | [GDNative] fix godot_variant_evaluate function | thomas.herzog | |
Fixes #28984 | |||
2019-05-22 | Makes the expression node to apply expression only when the focus leaves out | Chaosus | |
2019-05-21 | Initialize readonly/editable in LineEdit and TextEdit controls | Ibrahn Sahir | |
2019-05-21 | Add undo/redo to Node2D bone creation | Michael Alexsander Silva Dias | |
2019-05-21 | Merge pull request #29079 from neikeq/oopsie | Ignacio Roldán Etcheverry | |
Fix C# build error in MarshalUtils debug code | |||
2019-05-21 | Merge pull request #29076 from Chaosus/express_fixes2 | Yuri Roubinsky | |
Fix expression node parsing when input_port + \0 is occured | |||
2019-05-21 | Merge pull request #29052 from neikeq/fixes-28667------i-think | Ignacio Roldán Etcheverry | |
Replace call to 'mono_runtime_object_init' with manual ctor invoking | |||
2019-05-21 | Fix C# build error in MarshalUtils debug code | Ignacio Etcheverry | |
2019-05-21 | Fix expression node parsing when input_port + \0 is occured | Chaosus | |
2019-05-21 | Merge pull request #29073 from Chaosus/express_fixes | Yuri Roubinsky | |
Fix few bugs in expression node | |||
2019-05-21 | Fix bottom panel visibility behaviour in the theme editor | Michael Alexsander Silva Dias | |
Fixes #29034, fixes #29056 | |||
2019-05-21 | Fix few bugs in expression node | Chaosus | |
2019-05-21 | Merge pull request #29018 from guilhermefelipecgs/fix_28969 | Rémi Verschelde | |
[StateMachine] Fix error message for travel method | |||
2019-05-21 | Merge pull request #29032 from akien-mga/tools-exceptions-rtti | Rémi Verschelde | |
SCons: Keep exceptions and rtti on Android, iOS and HTML5 tools build | |||
2019-05-21 | Merge pull request #28838 from Chaosus/vs_exp | Rémi Verschelde | |
Expression node for visual shaders | |||
2019-05-21 | Merge pull request #29040 from swarnimarun/fix_override_bug | Rémi Verschelde | |
Clear overrides on passing null | |||
2019-05-21 | Merge pull request #29041 from hbina/add_const | Rémi Verschelde | |
add const to methods that return literals | |||
2019-05-21 | Merge pull request #29062 from swarnimarun/theme-editor-improvements | Rémi Verschelde | |
Fix Theme Editor Preview | |||
2019-05-21 | Merge pull request #28964 from Faless/webrtc/channels_pr | Rémi Verschelde | |
WebRTC refactor. data channels, STUN/TURN support. | |||
2019-05-21 | doc: Sync classref with current source | Rémi Verschelde | |
2019-05-21 | i18n: Sync translation template with current source | Rémi Verschelde | |
(cherry picked from commit bf7585530ba29959b2e3316db959170ba321ed61) |