Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-05-28 | Added move_toward functions for float, Vector2 and Vector3 | Giacom | |
2019-04-30 | Make "decimal" functions more consistent | Aaron Franke | |
In GDScript, rename "decimals" to "step_decimals". In C#, add "StepDecimals", but keep the old functionality in a method called "DecimalCount". | |||
2019-04-09 | Style: Apply new changes from clang-format 8.0 | Rémi Verschelde | |
It seems to stay compatible with formatting done by clang-format 6.0 and 7.0, so contributors can keep using those versions for now (they will not undo those changes). | |||
2019-04-08 | Merge pull request #27231 from Chaosus/smoothstep | Rémi Verschelde | |
Added smoothstep built-in function | |||
2019-04-07 | Added smoothstep built-in function | Chaosus | |
2019-04-01 | Add object encoding param to serialization methods | Fabio Alessandrelli | |
Network peers get_var/put_var File get_var/store_var GDScript/Mono/VisualScript bytes2var/var2bytes Add MultiplayerAPI.allow_object_decoding member which deprecates PacketPeer.allow_object_decoding. Break ABI compatibaility (API compatibility for GDNative). | |||
2019-02-20 | Add -Wshadow=local to warnings and fix reported issues. | marxin | |
Fixes #25316. | |||
2019-01-01 | Update copyright statements to 2019 | Rémi Verschelde | |
Happy new year to the wonderful Godot community! | |||
2018-12-11 | Moved member variables to initializer list | Wilson E. Alvarez | |
2018-10-28 | Error running Expression.execute after parse error | santouits | |
There happens a segmentation fault when you use Expression.parse() and you don't check for errors and then run Expression.execute(). So we check if there was a parse error in the execute method now. | |||
2018-10-01 | Add support for '.[0-9]' numbers in Expression | Rémi Verschelde | |
Fixes #21874, supersedes #22065. | |||
2018-09-12 | Make core/ includes absolute, remove subfolders from include path | Rémi Verschelde | |
This allows more consistency in the manner we include core headers, where previously there would be a mix of absolute, relative and include path-dependent includes. | |||
2018-08-29 | Add missing copyright headers | Rémi Verschelde | |
2018-08-24 | Make some debug prints verbose-only, remove others | Rémi Verschelde | |
2018-08-23 | Fixed bugs in expression class | Daniel Eliasinski | |
2018-08-09 | Fix clang compile error | Marcelo Fernandez | |
2018-08-08 | Ability to pass custom variables to expression. | Juan Linietsky | |
2018-08-08 | -Add Expression class, used to evaluate expressions | Juan Linietsky | |
-Added expression evaluation to EditorSpinSlider, fixes #20813, fixes #18932 |