summaryrefslogtreecommitdiff
path: root/modules/gdscript/gdscript_parser.cpp
AgeCommit message (Collapse)Author
2018-05-03Merge pull request #16418 from bojidar-bg/15961-gdscript-array-exportRémi Verschelde
Allow exporting arrays of resources in GDScript
2018-04-22Change ".." punctuation for "..." in editor strings (#16507)Hugo Locurcio
2018-03-04fix enum from preloaded script in exportx1212
without triggering unnecessary reloads and parsing.
2018-02-21Fix typos with codespellluz.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-19Merge pull request #15852 from poke1024/color_hsvRémi Verschelde
Add Color.from_hsv()
2018-02-19Merge pull request #15933 from x1212/fix_preload_in_exportsRémi Verschelde
fix spurious error messages during autocomplete and validate
2018-02-19Merge pull request #16173 from vnen/gdscript-argumentsRémi Verschelde
Add argument count check for some GDScript functions
2018-02-14fix spurious error messages during autocomplete and validatex1212
_parse() caused resets on members like validating and for_completion by calling clear().
2018-02-05Allow exporting arrays of resources in GDScriptBojidar Marinov
Fixes #15961
2018-02-02GDScriptParser: Remove debug prints.Andreas Haas
2018-01-30Add argument count check for some GDScript functionsGeorge Marques
- Print functions have no check. - Also remove extra apostrophe from the error report.
2018-01-21GDScript: always call ResourceLoader::load() in non-completion modeBernhard Liebl
2018-01-18Suppress errors on autocompletion for preload()Bernhard Liebl
2018-01-18Add Color.from_hsv()Bernhard Liebl
2018-01-18Fix typos in code and docs with codespellRémi Verschelde
Using v1.11.0 from https://github.com/lucasdemarchi/codespell
2018-01-05Add missing copyright headers and fix formattingRé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-01Update copyright statements to 2018Rémi Verschelde
Happy new year to the wonderful Godot community!
2017-12-16Merge pull request #12845 from remorse107/Array-Dictionary-FixRémi Verschelde
Fix issue #11400. Fixes issue with arrays and dictionary acting as static objects between different instances of objects.
2017-12-11Properly support nested ternary expressionsBojidar Marinov
Fixes 14324.
2017-12-09Make GDScript parser raise error when exporting ObjectGeorge Marques
2017-12-07Style: Apply clang-format again on all filesRémi Verschelde
Fixes issues introduced by newer clang-format versions or commits pushed directly without using the clang-format pre-commit hook.
2017-11-20Allow to extends constant variablesanikoyes
2017-11-17Fix issue #11400. Fixes issue with arrays and dictionary acting as static ↵Robert Morse
objects between different instances of objects.
2017-11-17Allow exporting enums from GDScriptBojidar Marinov
Use as `export(E) ...` Closes #12392
2017-11-16GDScript: Refactor "GD" class prefix to "GDScript"Rémi Verschelde