aboutsummaryrefslogtreecommitdiff
path: root/modules/gdscript (follow)
Commit message (Expand)AuthorAgeFilesLines
* Fix bug in inner class reference, closes #1411Juan Linietsky2016-07-081-4/+9
* Fixed bug related to resolving constants in a class, closes #1110Juan Linietsky2016-07-081-1/+1
* Fix extends issue, closes #4026Juan Linietsky2016-07-081-1/+3
* Optimize member access with selfPedro J. Estébanez2016-07-081-3/+11
* Add "bool" to GDScript reserverd keywordsAndreas Haas2016-06-251-0/+1
* Properly report a valid error instead of reporting as a bug, closes #3841Juan Linietsky2016-06-251-2/+2
* correctly parse floats in scientific notationDennis Brakhane2016-06-251-1/+1
* Fix crash in code completionGeorge Marques2016-06-251-5/+7
* gdscript tokenizer will dislike use of case, closes #4991Juan Linietsky2016-06-251-2/+3
* remove unnecesary found bug? print, closes #5028Juan Linietsky2016-06-251-1/+1
* Fix Color8 constructor using wrong value rangeGeorge Marques2016-06-051-2/+2
* GDScript: Fix method info for is_nan and is_infRémi Verschelde2016-06-041-2/+2
* Subclasses can now extend from other subclasses contained in scripts derived ...Saracen2016-04-271-1/+16
* Remove trailing spacesRémi Verschelde2016-04-021-5/+5
* remove trailing whitespaceHubert Jarosz2016-04-026-19/+19
* Fix typo in errorest312016-02-271-1/+1
* -Change link to new documentationJuan Linietsky2016-02-201-0/+1
* Merge pull request #3658 from Hinsbart/doc_joyeventRémi Verschelde2016-02-111-2/+2
|\
| * doc: use correct identifier for InputEventJoystick{Motion, Button}hondres2016-02-101-2/+2
* | -Added missing functions to the doc, fixes #3583Juan Linietsky2016-02-091-0/+24
|/
* Merge pull request #3587 from akien-mga/pr-reserved-keyordsRémi Verschelde2016-02-041-1/+1
|\
| * Fix missing commaRémi Verschelde2016-02-041-1/+1
* | Merge pull request #3582 from akien-mga/pr-reserved-keyordsGeorge Marques2016-02-041-28/+35
|\|
| * Add preload and PI to GDScript reserved keywordsRémi Verschelde2016-02-041-0/+2
| * Reorder reserved words by categoriesRémi Verschelde2016-02-041-28/+33
* | -Added method flags to global constants for scriptJuan Linietsky2016-01-311-0/+1
|/
* Merge pull request #3445 from akien-mga/masterRémi Verschelde2016-01-261-1/+4
|\
| * Add missing return for typeof() MethodInfoRémi Verschelde2016-01-251-1/+4
* | can preload constantshondres2016-01-241-7/+15
* | -remove unnecesary error report, fixes #3361Juan Linietsky2016-01-233-7/+21
* | Removed GDScript "function" keywordFranklin Sobrinho2016-01-131-1/+0
* | Reworked how autoloads are load to make sure identifiers always exist, please...Juan Linietsky2016-01-131-0/+1
* | -Make Akien happy, fixes #3068Juan Linietsky2016-01-101-1/+1
* | Added missing onready token nameIgnacio Etcheverry2016-01-071-0/+1
* | Fixed bug with default arguments in gdscript, closes #2024Juan Linietsky2016-01-032-1/+3
* | Added var2bytes and bytes2var to convet any variable to bytes and back. Close...Juan Linietsky2016-01-023-1/+69
* | -Ability to roll-back script-exported properties to their default value on th...Juan Linietsky2016-01-022-0/+24
* | PI is now a built-in constant, fixes #2134Juan Linietsky2016-01-023-1/+11
* | -properly handle newline in \ (line continuation) in gdscript, fixes #2112Juan Linietsky2016-01-022-17/+12
* | Update copyright to 2016 in headersGeorge Marques2016-01-0115-15/+15
* | small fixes to color8Juan Linietsky2015-12-312-2/+2
* | -Added Color8(r8,g8,b8,a8) function as well as .r8,.g8,.b8,.a8 members to Col...Juan Linietsky2015-12-312-0/+36
* | force thread model to single-safe when running editor, fixes #2387Juan Linietsky2015-12-311-0/+1
* | -Changed var2str and str2var in GDScript to use VariantWriter and VariantParserJuan Linietsky2015-12-311-2/+19
* | added missing null checkZher Huei Lee2015-12-301-1/+1
* | added missing onready allocation for subclassesZher Huei Lee2015-12-301-0/+2
* | -add breakpoint statement to ease with debugging, closes #3165reduz2015-12-297-1/+34
* | -fixed bug with some indent blocks not properly checked, fixes #2570reduz2015-12-291-4/+16
* | -renamed function get_relative_transform() to get_relative_transform_to_paren...reduz2015-12-281-6/+2
* | - added 'onready' keyword to gdscript. Defers initialization of member variab...reduz2015-12-287-8/+78