| Commit message (Expand) | Author | Age | Files | Lines |
* | Changed some code showed in LGTM and Coverage | qarmin | 2019-07-20 | 1 | -1/+1 |
* | Remove unnecessary code and add some error explanations | qarmin | 2019-07-01 | 1 | -1/+2 |
* | Style: Apply new changes from clang-format 8.0 | Rémi Verschelde | 2019-04-09 | 1 | -4/+8 |
* | Merge pull request #25934 from mrcdk/pool_int_real_color_interpolate | Rémi Verschelde | 2019-03-03 | 1 | -3/+67 |
|\ |
|
| * | Added PoolIntArray, PoolRealArray and PoolColorArray interpolate | MrCdK | 2019-02-16 | 1 | -3/+67 |
* | | Add -Wshadow=local to warnings and fix reported issues. | marxin | 2019-02-20 | 1 | -9/+9 |
|/ |
|
* | Update copyright statements to 2019 | Rémi Verschelde | 2019-01-01 | 1 | -2/+2 |
* | Fix many errors found by PVS-Studio | Aaron Franke | 2018-11-28 | 1 | -2/+2 |
* | Optimize interpolation algorithms | qonnop | 2018-10-07 | 1 | -7/+6 |
* | Merge pull request #22752 from aaronfranke/equals-redundant | Rémi Verschelde | 2018-10-07 | 1 | -1/+1 |
|\ |
|
| * | Remove redundant "== false" code | Aaron Franke | 2018-10-06 | 1 | -1/+1 |
* | | Fixed int interpolation issue, closes #22763 | qonnop | 2018-10-06 | 1 | -1/+4 |
|/ |
|
* | Color: Fix rounding error converting from float to 8-bit | Rémi Verschelde | 2018-09-18 | 1 | -4/+4 |
* | Make core/ includes absolute, remove subfolders from include path | Rémi Verschelde | 2018-09-12 | 1 | -3/+3 |
* | Hacked around duplication bug. I think duplicate needs to be even smarter, ma... | Juan Linietsky | 2018-07-03 | 1 | -0/+2 |
* | -Fixes to how hashing happened, now StringName and NodePath use default hashe... | Juan Linietsky | 2018-07-02 | 1 | -2/+9 |
* | Keep alpha when changing h, s or v on color | ShyRed | 2018-04-22 | 1 | -9/+9 |
* | Fix names of Variant operators | George Marques | 2018-04-16 | 1 | -1/+2 |
* | Merge pull request #17382 from bojidar-bg/13971-path-array-unsaved | Juan Linietsky | 2018-04-08 | 1 | -0/+13 |
|\ |
|
| * | Duplicate Arrays and Dictionaries when instancing scene in editor | Bojidar Marinov | 2018-03-13 | 1 | -0/+13 |
* | | Fix a potential bug hinted by clang | Bojidar Marinov | 2018-03-13 | 1 | -4/+4 |
|/ |
|
* | Color:fix setting V switch S to old V value | Poommetee Ketson | 2018-02-22 | 1 | -1/+1 |
* | Fix typos with codespell | luz.paz | 2018-02-21 | 1 | -1/+1 |
* | Fix NEQ operation between 2 different Arrays | MrCdK | 2018-01-06 | 1 | -4/+4 |
* | Add missing copyright headers and fix formatting | Rémi Verschelde | 2018-01-05 | 1 | -0/+1 |
* | Update copyright statements to 2018 | Rémi Verschelde | 2018-01-01 | 1 | -2/+2 |
* | Rename Rect3 to AABB. | Ferenc Arn | 2017-11-17 | 1 | -30/+30 |
* | Fix Color.r8/g8/b8/a8 being type float instead of type int | Marcelo Fernandez | 2017-10-19 | 1 | -4/+4 |
* | Make variant_op jumptable const | Hein-Pieter van Braam | 2017-09-25 | 1 | -26/+26 |
* | Merge pull request #11549 from hpvb/fix-11543 | Hein-Pieter van Braam | 2017-09-24 | 1 | -1/+1 |
|\ |
|
| * | Fix Dictionary set_named | Hein-Pieter van Braam | 2017-09-24 | 1 | -1/+1 |
* | | Fix Variant::get_named return when p_index is invalid | Marcelo Fernandez | 2017-09-24 | 1 | -0/+1 |
|/ |
|
* | Merge pull request #11473 from hpvb/fix-11466 | Rémi Verschelde | 2017-09-24 | 1 | -8/+14 |
|\ |
|
| * | Implement operator != on Pool*Array types | Hein-Pieter van Braam | 2017-09-22 | 1 | -8/+14 |
* | | Massive optimization to Variant::set_named/get_named. Should give a nice boos... | Juan Linietsky | 2017-09-23 | 1 | -27/+458 |
|/ |
|
* | Allow equality checks between null and arbitrary types | Hein-Pieter van Braam | 2017-09-20 | 1 | -156/+201 |
* | Allow booleanization of all types | Hein-Pieter van Braam | 2017-09-19 | 1 | -75/+12 |
* | Be type-strict checking on equality checks | Hein-Pieter van Braam | 2017-09-19 | 1 | -67/+63 |
* | Fix accidental cast to Vector3 for Vector2 iter | Hein-Pieter van Braam | 2017-09-19 | 1 | -1/+1 |
* | Move Variant::evaluate() switch to computed goto | Hein-Pieter van Braam | 2017-09-17 | 1 | -693/+970 |
* | Implement +,-,/, * and negate operators for Color type. | bncastle | 2017-09-16 | 1 | -5/+5 |
* | Revert "Don't allow division by false (zero)" | Thomas Herzog | 2017-09-15 | 1 | -28/+1 |
* | Don't allow division by false (zero) | Hein-Pieter van Braam | 2017-09-15 | 1 | -1/+28 |
* | Use HTTPS URL for Godot's website in the headers | Rémi Verschelde | 2017-08-27 | 1 | -1/+1 |
* | -Many fixes to VisualScript, fixed property names, etc. | Juan Linietsky | 2017-06-30 | 1 | -9/+7 |
* | Reworked translation system | Juan Linietsky | 2017-06-28 | 1 | -1/+1 |
* | Reimplement for..in range() so that it always results in ints | Bojidar Marinov | 2017-06-22 | 1 | -20/+22 |
* | renamed all Rect3.pos to Rect3.position | alexholly | 2017-06-09 | 1 | -8/+8 |
* | renamed all Rect2.pos to Rect2.position | alexholly | 2017-06-04 | 1 | -9/+9 |
* | Removal of InputEvent as built-in Variant type.. | Juan Linietsky | 2017-05-20 | 1 | -714/+0 |