Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-08-15 | Fix image offset when upscaling with Lanczos | Davide Busterna | |
2019-08-15 | Merge pull request #31321 from julianaito/master | Rémi Verschelde | |
Add __atomic_* operators support for atomic operations | |||
2019-08-14 | Replace legacy __sync atomic operations with newer __atomic ones | Charlène | |
2019-08-14 | Merge pull request #31266 from ↵ | Rémi Verschelde | |
IAmActuallyCthulhu/pr/remove-redundant-author-comments Remove redundant author doc comments | |||
2019-08-13 | remove unused self list include from astar | Robin Hübner | |
2019-08-13 | Merge pull request #31292 from iwek7/fixDebuggerInspectionForNodes | Rémi Verschelde | |
Fixes issue with debug inspecing of nodes that are not in the scene tree | |||
2019-08-12 | Fixes issue when inspecting nodes that are not in the tree | miwanczuk | |
2019-08-12 | Export: Remove temp files from cache after export | Rémi Verschelde | |
So far we left most temporary files lying around, so this attempts to fix that. I added a helper method to DirAccess to factor out the boilerplate of creating a DirAccess, checking if the file exists, remove it or print an error on failure. | |||
2019-08-12 | Merge pull request #31228 from aaronfranke/identity-constants | Rémi Verschelde | |
Add Basis constants and format Transform constants | |||
2019-08-12 | Remove redundant author doc comments | IAmActuallyCthulhu | |
2019-08-10 | Remove old doc comments in image_loader header | IAmActuallyCthulhu | |
2019-08-09 | Add Basis constants and format Transform constants | Aaron Franke | |
2019-08-08 | Merge pull request #30893 from profan/fix/err-explain | Rémi Verschelde | |
Implement error macros that come with an error message, replacing ERR_EXPLAIN. | |||
2019-08-08 | implement accompanying error macros that come with an error message, to ↵ | Robin Hübner | |
replace ERR_EXPLAIN usage. | |||
2019-08-08 | Merge pull request #30934 from santouits/debugg | Rémi Verschelde | |
Hopefully fix the random crashes with threads | |||
2019-08-08 | Merge pull request #31195 from bojidar-bg/31143-funcref-call_funcv | Rémi Verschelde | |
Add FuncRef.call_funcv | |||
2019-08-08 | Add FuncRef.call_funcv | Bojidar Marinov | |
Closes #31143 | |||
2019-08-08 | Translation: Fix logic bug finding match for regional locales | Rémi Verschelde | |
The match test was inverted. The rest of the changes are documentation and cleanup. Fixes #26346 and fixes #31192. | |||
2019-08-08 | Merge pull request #31047 from Zylann/save_exr | Rémi Verschelde | |
Add Image.save_exr() | |||
2019-08-07 | Add Image.save_exr() | Marc Gilleron | |
2019-08-07 | Merge pull request #31077 from qarmin/coverity_bugs | Rémi Verschelde | |
Change some code proposed by Coverity and Cppcheck | |||
2019-08-07 | Add some code changes/fixes proposed by Coverity and Clang Tidy | qarmin | |
2019-08-06 | Merge pull request #30998 from Calinou/cap-warnings-errors-per-second | Rémi Verschelde | |
Cap the number of warnings/errors per second rather than per frame | |||
2019-08-05 | Fixed EOF flag not resetting on seek back | TGRCDev | |
2019-08-04 | [Core] [Mono] Optimize Wrap functions | Aaron Franke | |
Use is_zero_approx(), avoid a negative, and also rename "rng" to "range". | |||
2019-07-31 | Cap the number of warnings/errors per second rather than per frame | Hugo Locurcio | |
This reproduces the behavior used for printing when using the remote debugger. The default limit is 100 errors and 100 warnings per second, which makes it possible to display much more GDScript warnings before overflowing. This also adds a "Too many warnings" message, so that warnings don't look like errors when overflowing anymore. This closes #21896. | |||
2019-07-30 | Hopefully fix the random crashes with threads | santouits | |
2019-07-28 | [Mono] Deprecate Set methods | Aaron Franke | |
These silently fail, so they should be removed. I accidentally added most of these last year, trying to make everything else consistent with Quat, sorry! Also, a few tiny nitpicking changes are included, like whitespace and misspellings. | |||
2019-07-25 | DirAccess: Drop compat get_next(bool *is_dir) which was hidden | Rémi Verschelde | |
Fixes this warning: ``` ./core/os/dir_access.h:74:17: warning: 'virtual String DirAccess::get_next(bool*)' was hidden [-Woverloaded-virtual] ``` Part of #30790. | |||
2019-07-25 | Merge pull request #30776 from akien-mga/editor-configurable-float-step | Rémi Verschelde | |
Inspector: Make default float step configurable | |||
2019-07-25 | Inspector: Fix PROPERTY_HINT_SPRITE_FRAME not behaving as RANGE | Rémi Verschelde | |
This was a regression in 3.1 and later from the new inspector, where PROPERTY_HINT_SPRITE_FRAME was not fully re-implemented. It's meant to be a normal PROPERTY_HINT_RANGE which also automatically increments its value when keyed in the animation player. To avoid code duplication, I made the frames properties use the actual PROPERTY_HINT_RANGE and introduced a PROPERTY_USAGE_KEYING_INCREMENTS usage flag instead. | |||
2019-07-24 | Merge pull request #25090 from Chaosus/string_count | Rémi Verschelde | |
Added String.count method | |||
2019-07-23 | Update some dead links in the codebase | Michael Alexsander Silva Dias | |
2019-07-23 | Added count method to String | Chaosus | |
2019-07-23 | Inspector: Make default float step configurable | Rémi Verschelde | |
Also allow lifting the decimal step formatting with a hint range step of 0. A new `range_step_decimals()` is added for this to avoid breaking compatibility on the general purpose `step_decimals()` (which still returns 0 for an input step of 0). Supersedes #25470. Partial fix for #18251. | |||
2019-07-23 | Merge pull request #30716 from qarmin/fixed_static_analiser_code | Rémi Verschelde | |
Fix some code found by Coverity Scan and PVS Studio | |||
2019-07-23 | Fix some code found by Coverity Scan and PVS Studio | qarmin | |
2019-07-22 | Revert "Expose "meta" to the Inspector" | Rémi Verschelde | |
2019-07-22 | Make it a build error if a GetTypeInfo specialization cannot be resolved | Ignacio Etcheverry | |
Previously it was a runtime error message. | |||
2019-07-20 | Merge pull request #30693 from Chaosus/lerp_angle | Rémi Verschelde | |
Added lerp_angle built-in function | |||
2019-07-20 | Merge pull request #30576 from qarmin/lgtm_coverage | Rémi Verschelde | |
Changed some code reported by LGTM and Coverity | |||
2019-07-20 | Added lerp_angles built-in function | Chaosus | |
Co-authored-by: Xrayez <https://github.com/Xrayez> Co-authored-by: DleanJeans <https://github.com/DleanJeans> | |||
2019-07-20 | Changed some code showed in LGTM and Coverage | qarmin | |
2019-07-19 | Merge pull request #30354 from LikeLakers2/multinodeedit-same-type-properties | Rémi Verschelde | |
MultiNodeEdit now only shows properties with the exact same PropertyInfo data | |||
2019-07-19 | Merge pull request #23310 from aaronfranke/posmod-int | Rémi Verschelde | |
Add integer posmod and rename default arg names | |||
2019-07-19 | Merge pull request #22642 from YeldhamDev/inspector_metadata | Rémi Verschelde | |
Expose "meta" to the Inspector | |||
2019-07-18 | Add integer posmod and rename default arg names | Aaron Franke | |
"posmod" is the integer version of "fposmod". We do not need a "mod" because of the % operator. I changed the default arg names from "x" and "y" to "a" and "b" because they are not coordinates. I also changed pow's arg names to "base" and "exp". Also, I reorganized the code in the VS built-in funcs switch statement. | |||
2019-07-18 | Merge pull request #30226 from lawnjelly/interpolate | Rémi Verschelde | |
Add access to interpolation fraction for fixed timestep interpolation | |||
2019-07-12 | Merge pull request #30341 from Toshiwoz/master | Rémi Verschelde | |
when doing Vector3 slerp it is not necessary to have it normalized. | |||
2019-07-11 | Add access to interpolation fraction for fixed timestep interpolation | lawnjelly | |
Addresses #30068 This is a prerequisite for allowing proper support for fixed timestep interpolation, exposing the interpolation fraction to the engine, modules and gdscript. The interpolation fraction is the fraction through the current physics tick at the time of the current frame. |