Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-05-28 | Merge pull request #28581 from Lisapple/patch-1 | Rémi Verschelde | |
Fixing Curve2D/3D baked interpolated values | |||
2019-05-27 | Make animation editor change tracks positions instead of swapping them | Michael Alexsander Silva Dias | |
2019-05-27 | Merge pull request #29228 from neikeq/issue-29117 | Rémi Verschelde | |
Fix GetTypeInfo error due to missing include | |||
2019-05-27 | Fix GetTypeInfo error due to missing include | Ignacio Etcheverry | |
2019-05-25 | fix radiance map settings | clayjohn | |
2019-05-23 | Merge pull request #29031 from BastiaanOlij/alpha_shadow | Rémi Verschelde | |
Implement shadow to opacity | |||
2019-05-21 | Fix expression node parsing when input_port + \0 is occured | Chaosus | |
2019-05-21 | Fix few bugs in expression node | Chaosus | |
2019-05-21 | Merge pull request #28838 from Chaosus/vs_exp | Rémi Verschelde | |
Expression node for visual shaders | |||
2019-05-21 | Implement shadow to opacity | Bastiaan Olij | |
2019-05-21 | Expression node for visual shaders | Chaosus | |
2019-05-20 | Merge pull request #28218 from KoBeWi/b00km4rk5 | Rémi Verschelde | |
Add bookmarks for easier code navigation | |||
2019-05-20 | Style: Fix issues with clang-format 8.0 | Rémi Verschelde | |
2019-05-19 | Merge pull request #28997 from akien-mga/codespell | Rémi Verschelde | |
Fix typos with codespell | |||
2019-05-19 | Fix typos with codespell | Rémi Verschelde | |
Using codespell 1.15.0. Method: ``` $ cat > ../godot-word-whitelist.txt << EOF ang curvelinear doubleclick leapyear lod merchantibility nd numer ois ony que seeked synching te uint unselect webp EOF $ codespell -w -q 3 -I ../godot-word-whitelist.txt --skip="./thirdparty,*.po" $ git diff // undo unwanted changes ``` | |||
2019-05-19 | Added Fresnel and OneMinus to visual shaders | Chaosus | |
2019-05-17 | Merge pull request #28366 from iwek7/feature/issue28355/showSpacesInEditor | Max Hilbrunner | |
Add feature to show spaces in code editor | |||
2019-05-13 | Merge pull request #28761 from aqnuep/texture_resource_reload_fix | Rémi Verschelde | |
Fix texture resource reload bug | |||
2019-05-08 | Fix texture resource reload bug | Daniel Rakos | |
If a non-imported texture resource file (e.g. DDS) gets updated the editor doesn't reload it. The cause of the problem is two-fold: First, the code of ImageTexture assumes that textures are always imported from an image, but that's not the case for e.g. DDS. This change thus adds code to issue a resource reload in case an image reload is not possible (which is the case for non-imported texture resources). Second, the code is filled with bogus calls to Image::get_image_data_size() to determine the mipmap offset when that should be done using Image::get_image_mipmap_offset(). Previous code literally passed the integer mip level value to Image::get_image_data_size() where that actually expects a boolean. Thus this part of the change might actually solve some other issues as well. To be pedantic, the texture_get_data() funciton of the rasterizer drivers is still quite a mess, as it only ever returns the whole mipchain when GLES_OVER_GL is set (practically only on desktop builds) but this change does not attempt to resolve that. | |||
2019-05-07 | Add transform support to deal with Bullets centering of shapes | Bastiaan Olij | |
2019-05-07 | Center shape according to logic Bullet applies | Bastiaan Olij | |
2019-05-06 | Merge pull request #28516 from Chaosus/fix_vs_mix_title | Rémi Verschelde | |
Renames captions of Scalar/VectorInterp in Visual Shaders | |||
2019-05-06 | Merge pull request #28330 from BastiaanOlij/improve_multimesh | Rémi Verschelde | |
Added set_as_bulk_array, fixed transform2D saving and documentation | |||
2019-05-05 | Add bookmarks for easier code navigation | Tomasz Chabora | |
2019-05-03 | Merge pull request #28548 from YeldhamDev/check_button_disabled_icon | Rémi Verschelde | |
Add "disabled" icon for 'CheckButton' | |||
2019-05-03 | Merge pull request #28636 from bojidar-bg/d2426-panel-styles | Rémi Verschelde | |
Remove unused panelf and panelnc styles | |||
2019-05-03 | Remove unused `panelf` and `panelnc` styles | Bojidar Marinov | |
Fixes godotengine/godot-docs#2426 | |||
2019-05-02 | Add "disabled" icon for 'CheckButton' | Michael Alexsander Silva Dias | |
2019-05-02 | Add a property hint for DynamicFont size | Hugo Locurcio | |
This caps its size to reasonable values in the Inspector. This closes #22581. | |||
2019-05-01 | Fixing Curve2D/3D baked interpolated values | Maxime Leroy | |
If bake interval is a multiple of the curve length, the curve would return NaN for some offset values (when `frac == 0.0`, it matches the start and end of the curve segment so `fmod == 0.0`, `frac` becomes NaN) ``` # Godot 3.1.1 var c = Curve3D.new() c.add_point(Vector3()) c.add_point(Vector3(0.5,0,0)) c.add_point(Vector3(1,0,0)) c.bake_interval = 0.5 c.interpolate_baked(0.5) == Vector3(NAN, NAN, NAN) ``` | |||
2019-05-01 | Expose TextEdit's drawSpaces feature to GDScript | miwanczuk | |
2019-05-01 | Merge pull request #27676 from qarmin/small_fixes_2 | Rémi Verschelde | |
Small fixes to static analyzer bugs | |||
2019-04-30 | Merge pull request #27021 from MarianoGnu/font | Rémi Verschelde | |
Add and expose to Font a function to get the word-wraped text size | |||
2019-04-30 | Merge pull request #24437 from mateusfccp/single_quotes_option | Rémi Verschelde | |
Add settings for single-quotes on completion | |||
2019-04-30 | Add and expose to Font a function to get the rect size needed to draw a ↵ | Mariano Suligoy | |
word-wraped text | |||
2019-04-30 | Merge pull request #27763 from maksloboda/priority-improvement | Rémi Verschelde | |
Changed autotile priority picking algorithm | |||
2019-04-29 | Renames captions of Scalar/VectorInterp in Visual Shaders | Chaosus | |
2019-04-29 | Merge pull request #28101 from MunWolf/debugger_cursor | Rémi Verschelde | |
Added a marker in text_edit that tells which row is executing. | |||
2019-04-29 | Merge pull request #28399 from YeldhamDev/textedit_expose_tab_fold | Rémi Verschelde | |
Expose 'TextEdit's tab drawing and folding to GDScript | |||
2019-04-26 | Added set_as_bulk_array, fixed transform2D saving and documentation to MultiMesh | Bastiaan Olij | |
2019-04-25 | Use approximate equallity methods in many places | Aaron Franke | |
2019-04-25 | [Core] Approximate equality | Aaron Franke | |
2019-04-24 | Expose 'TextEdit's tab drawing and folding to GDScript | Michael Alexsander Silva Dias | |
2019-04-24 | Disallow loopback connection in visual scripts and visual shaders | Chaosus | |
2019-04-23 | Added a marker in text_edit that tells which row is executing. | Rikhardur Bjarni Einarsson | |
2019-04-23 | Merge pull request #27903 from Calinou/richtextlabel-brighten-default-color | Hein-Pieter van Braam | |
Brighten the RichTextLabel color in the default theme | |||
2019-04-23 | Fix typo count_count to count | qarmin | |
2019-04-22 | Expose visible instance count to multimesh | Juan Linietsky | |
2019-04-22 | Merge pull request #27673 from qarmin/small_fixes | Rémi Verschelde | |
Small fixes, mostly duplicated code | |||
2019-04-21 | Merge pull request #27219 from raphael10241024/debug_fix | Rémi Verschelde | |
Fix collider debug shape didn't changes with collider size changes |