Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-02-27 | doc: Remove status from hardcoded version string | Rémi Verschelde | |
It has no practical use case and just generates noise for each alpha, beta, etc. | |||
2018-02-24 | Removed whitespaces around arguments of functions. | anakimluke | |
Functions automatically generated by conneting signals via GUI put whitespaces around the arguments of the generated function. This is inconsistent with the style guide. This commit fixes that. (cherry picked from commit 370f84f41cf3ce493c2de687455880d9e1e04be6) | |||
2018-02-21 | Fix typos with codespell | luz.paz | |
Found via `codespell -q 3 --skip="./thirdparty,./editor/translations" -I ../godot-word-whitelist.txt` Whitelist consists of: ``` ang doubleclick lod nd que te unselect ``` | |||
2018-02-19 | Merge pull request #15852 from poke1024/color_hsv | Rémi Verschelde | |
Add Color.from_hsv() | |||
2018-02-19 | Merge pull request #15933 from x1212/fix_preload_in_exports | Rémi Verschelde | |
fix spurious error messages during autocomplete and validate | |||
2018-02-19 | Merge pull request #16173 from vnen/gdscript-arguments | Rémi Verschelde | |
Add argument count check for some GDScript functions | |||
2018-02-19 | doc: Update version string in header | Rémi Verschelde | |
2018-02-14 | fix spurious error messages during autocomplete and validate | x1212 | |
_parse() caused resets on members like validating and for_completion by calling clear(). | |||
2018-02-14 | Merge pull request #16176 from vnen/gdscript-default-args | Rémi Verschelde | |
Show default values in docs for GDScript built-in functions | |||
2018-02-02 | GDScriptParser: Remove debug prints. | Andreas Haas | |
2018-01-30 | Show default values in docs for GDScript built-in functions | George Marques | |
2018-01-30 | Add argument count check for some GDScript functions | George Marques | |
- Print functions have no check. - Also remove extra apostrophe from the error report. | |||
2018-01-25 | doc: Fix references to online tutorials after godotengine/godot-docs#1015 | Rémi Verschelde | |
2018-01-25 | doc: Sync with current source | Rémi Verschelde | |
Also enhance RigidBody docs as per https://github.com/godotengine/godot-docs/pull/1018 and fix the version tag in all files (not really stable yet, but it makes no sense to hardcode rc3 at this stage). | |||
2018-01-21 | GDScript: always call ResourceLoader::load() in non-completion mode | Bernhard Liebl | |
2018-01-20 | Allow shadowing class members with local variables in GDScript, closes #15896 | Juan Linietsky | |
2018-01-18 | Merge pull request #15849 from poke1024/preload-completion | Rémi Verschelde | |
GDScript: fix autocompletion for preload() (issue 15766) | |||
2018-01-18 | Suppress errors on autocompletion for preload() | Bernhard Liebl | |
2018-01-18 | Add Color.from_hsv() | Bernhard Liebl | |
2018-01-18 | Fix typos in code and docs with codespell | Rémi Verschelde | |
Using v1.11.0 from https://github.com/lucasdemarchi/codespell | |||
2018-01-18 | GDScript: fix autocompletion for preload() (issue 15766) | Bernhard Liebl | |
2018-01-17 | doc: Replace some more "val" with "value" + sync | Rémi Verschelde | |
2018-01-16 | Fixes for parameter names of builtin functions in visual scripts/core | Chaosus | |
2018-01-15 | Filled tutorial field in most relevent classes. | Juan Linietsky | |
Added tutorial display in doc. | |||
2018-01-13 | doc: Update version string in XML | Rémi Verschelde | |
2018-01-12 | Bind many more properties to scripts | Bojidar Marinov | |
Notable potentially breaking changes: - PROPERTY_USAGE_NOEDITOR is now PROPERTY_USAGE_STORAGE | PROPERTY_USAGE_NETWORK, without PROPERTY_USAGE_INTERNAL - Some properties were renamed, and sometimes even shadowed by new ones - New getter methods (some virtual) were added | |||
2018-01-09 | Mono: Implement stack info for errors and exceptions | Ignacio Etcheverry | |
2018-01-05 | Add missing copyright headers and fix formatting | Rémi Verschelde | |
Using `misc/scripts/fix_headers.py` on all Godot files. Some missing header guards were added, and the header inclusion order was fixed in the Bullet module. | |||
2018-01-03 | Merge pull request #15089 from poke1024/funcref-warn | Rémi Verschelde | |
Warn about funcref creation | |||
2018-01-01 | Update copyright statements to 2018 | Rémi Verschelde | |
Happy new year to the wonderful Godot community! | |||
2017-12-26 | Warn about funcref creation | Bernhard Liebl | |
2017-12-17 | Cleanup some #if 0'd code | Rémi Verschelde | |
2017-12-16 | Merge pull request #12845 from remorse107/Array-Dictionary-Fix | Rémi Verschelde | |
Fix issue #11400. Fixes issue with arrays and dictionary acting as static objects between different instances of objects. | |||
2017-12-14 | GDScript files are converted to binary on export now. | Juan Linietsky | |
2017-12-13 | Scons: Build modules in seperate env. | Andreas Haas | |
2017-12-11 | Properly support nested ternary expressions | Bojidar Marinov | |
Fixes 14324. | |||
2017-12-10 | Style: Re-apply clang-format over recent invalid additions | Rémi Verschelde | |
2017-12-09 | Make GDScript parser raise error when exporting Object | George Marques | |
2017-12-07 | Fixed is_playing funtion (was reporting wrong), closes #13928 | Juan Linietsky | |
Made error reporting to opcode_set in gdscript a bit clearer | |||
2017-12-07 | Style: Apply new clang-format 5.0 style to all files | Rémi Verschelde | |
2017-12-07 | Style: Apply clang-format again on all files | Rémi Verschelde | |
Fixes issues introduced by newer clang-format versions or commits pushed directly without using the clang-format pre-commit hook. | |||
2017-11-25 | Made Vector::ptrw explicit for writing, compiler was sometimes using the ↵ | Juan Linietsky | |
wrong function, leading to unnecesary copy on writes and reduced performance. | |||
2017-11-24 | doc: Update header version for 3.0-beta | Rémi Verschelde | |
2017-11-20 | Add cartesian to polar conversion functions | pablotato | |
2017-11-20 | Allow to extends constant variable | sanikoyes | |
2017-11-20 | Merge pull request #11940 from GodotExplorer/debugger | Rémi Verschelde | |
Enhanced debugger for godot 3.0 | |||
2017-11-20 | Merge pull request #12952 from bojidar-bg/12392-export-enums | Rémi Verschelde | |
Allow exporting enums from GDScript | |||
2017-11-17 | Fix issue #11400. Fixes issue with arrays and dictionary acting as static ↵ | Robert Morse | |
objects between different instances of objects. | |||
2017-11-17 | Merge pull request #12930 from vnen/gdscrit-output-print | Juan Linietsky | |
Make tool scripts print on the editor Output panel | |||
2017-11-17 | Rename Rect3 to AABB. | Ferenc Arn | |
Fixes #12973. |