summaryrefslogtreecommitdiffstats
path: root/modules/gdscript
Commit message (Expand)AuthorAgeFilesLines
...
* Honoring the Indent setting for gdscriptRamesh Ravone2017-04-251-10/+13
* fixed a bug where saving a GDScript file crashed the editorKarroffel2017-04-241-2/+5
* Merge pull request #8444 from magyar123/pr-complete-pathsRémi Verschelde2017-04-243-0/+32
|\
| * Added autocomplete for file paths in the script editormbalint122017-04-183-0/+32
* | Merge pull request #8420 from magyar123/pr-script-files-as-baseRémi Verschelde2017-04-241-0/+1
|\ \
| * | Added the ability to select files as base when creating scriptsmbalint122017-04-151-0/+1
| |/
* | re-added MultiScriptKarroffel2017-04-241-2/+2
* | Added support for space indentationPaulb232017-04-182-2/+24
|/
* Fixup #8123, seems like I forgot a few thingsBojidar Marinov2017-04-081-3/+3
* Add "Godot Engine contributors" copyright lineRémi Verschelde2017-04-0815-0/+15
* Fix typo in Parser Error messagecurtisxk382017-04-051-1/+1
* Add '$' to token namesSaggi Mizrahi2017-04-011-0/+1
* Merge pull request #8123 from bojidar-bg/gdscript-inline-block-indentRémi Verschelde2017-03-241-1/+9
|\
| * Make inline blocks in GDScript more pythonicBojidar Marinov2017-03-231-1/+9
* | Fix typos in source code using codespellRémi Verschelde2017-03-244-9/+9
|/
* Merge pull request #8095 from RandomShaper/fix-yield-crashRémi Verschelde2017-03-211-1/+1
|\
| * Fix random crashes when using yield()Pedro J. Estébanez2017-03-211-1/+1
* | Fixed typo in gdscript autocompletion.mbalint122017-03-171-1/+1
|/
* Skip asserts on non-debug builds at compiler levelPedro J. Estébanez2017-03-131-0/+2
* A Whole New World (clang-format edition)Rémi Verschelde2017-03-0514-5863/+5221
* Add a bunch of missing Godot headers in own filesRémi Verschelde2017-03-052-0/+57
* Refactoring: rename tools/editor/ to editor/Rémi Verschelde2017-03-051-3/+3
* Merge pull request #7878 from RebelliousX/elseRémi Verschelde2017-02-281-1/+1
|\
| * Various fixes detected using PVS-Studio static analyzer.Thaer Razeq2017-02-281-1/+1
* | Inf and NaN support added to GDScript.Saracen2017-02-285-0/+36
|/
* Merge pull request #7851 from shlomif/fix-some-compilation-warningsRémi Verschelde2017-02-261-0/+1
|\
| * Fix some compilation warnings.Shlomi Fish2017-02-211-0/+1
* | Merge pull request #7809 from hpvb/fix-6798Rémi Verschelde2017-02-261-4/+25
|\ \
| * | Allow preload to accept a const string.Hein-Pieter van Braam2017-02-161-4/+25
* | | -renamed globals.h to global_config.cpp (this seems to have caused a few modi...Juan Linietsky2017-02-212-2/+2
| |/ |/|
* | Correct hash behavior for floating point numbersHein-Pieter van Braam2017-02-162-2/+2
* | -begin of export work, not done yetJuan Linietsky2017-02-151-0/+2
|/
* Remove bounds check when resuming from yield.Hein-Pieter van Braam2017-02-131-1/+1
* Rename the _MD macro to D_METHODHein-Pieter van Braam2017-02-132-4/+4
* Fix parsing bug which causes range(variable) to crash the enginelonesurvivor2017-02-041-4/+3
* Removed import/export system, will start new one from scratch.Juan Linietsky2017-01-251-3/+4
* Merge pull request #7583 from karroffel/wildcardRémi Verschelde2017-01-233-7/+9
|\
| * made _ a special token in GDScriptkarroffel2017-01-203-7/+9
* | Overloaded basic math funcs (double and float variants). Use real_t rather th...Ferenc Arn2017-01-161-32/+32
|/
* Merge pull request #7532 from tagcup/pcg_prngRémi Verschelde2017-01-161-2/+2
|\
| * Replace the existing PRNG (Xorshift31) with (minimal) PCG (XSH-RR variant wit...Ferenc Arn2017-01-151-2/+2
* | Style: Various fixes to play nice with clang-formatRémi Verschelde2017-01-161-1/+1
* | Style: Fix statements ending with ';;'Rémi Verschelde2017-01-164-4/+4
* | Style: Cleanups, added headers, renamed filesRémi Verschelde2017-01-161-1/+1
* | Style: Cosmetic fixes to play nice with clang-formatRémi Verschelde2017-01-152-50/+65
|/
* Compile error when duplicate key in dictionery literal #7034James Mintram2017-01-141-0/+11
* Merge pull request #6845 from karroffel/masterJuan Linietsky2017-01-146-2/+697
|\
| * pattern matcher: Implemented backendKarroffel2017-01-114-286/+372
| * pattern matcher: Implemented transformationsKarroffel2017-01-113-35/+393
| * pattern matching: implemented parserKarroffel2017-01-114-1/+252