aboutsummaryrefslogtreecommitdiff
path: root/modules/gdscript (follow)
Commit message (Expand)AuthorAgeFilesLines
...
| * | | | | Disallow assignment to constants and expressionsBojidar Marinov2016-12-291-1/+10
* | | | | | Welcome in 2017, dear changelog reader!Rémi Verschelde2017-01-0113-13/+13
|/ / / / /
* | | | | Merge pull request #6802 from henriquelalves/masterRémi Verschelde2016-11-112-2/+6
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | Added small modification on parser for '+'Henrique L. Alves2016-10-222-2/+6
* | | | | Make GDScript parser ignore floating strings in class definitionBojidar Marinov2016-11-031-1/+10
* | | | | style: Fix PEP8 blank lines issues in Python filesRémi Verschelde2016-11-011-3/+0
* | | | | style: Start applying PEP8 to Python files, indentation issuesRémi Verschelde2016-11-011-2/+2
| |/ / / |/| | |
* | | | Merge pull request #6564 from SuperUserNameMan/gdscript_opcode_line_opcode_br...Rémi Verschelde2016-10-221-2/+4
|\ \ \ \
| * | | | Fixes #6487, GDscript compiler ignores OPCODE_LINE and OPCODE_BREAKPOINT in R...yg2f2016-09-201-2/+4
| | |_|/ | |/| |
* | | | Merge pull request #6850 from akien-mga/pr-scsub-shebangRémi Verschelde2016-10-171-0/+2
|\ \ \ \
| * | | | SCsub: Add python shebang as a hint for syntax highlightingRémi Verschelde2016-10-171-0/+2
* | | | | Merge pull request #6692 from bojidar-bg/add-char-to-gd-vs-scriptRémi Verschelde2016-10-172-0/+16
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | Add `String char(int ascii)` function to GDScript and Visual ScriptBojidar Marinov2016-10-032-0/+16
| |/ / /
* | | | modules: Clone env in each moduleRémi Verschelde2016-10-151-1/+1
* | | | Merge pull request #6813 from Faless/fix_6801_bisRémi Verschelde2016-10-142-12/+0
|\ \ \ \
| * | | | Revert "Add warning when (pre)loading paths with leading / (#4280 - #3106)"Fabio Alessandrelli2016-10-132-12/+0
| | |/ / | |/| |
* / | | Adapt overlooked instances of zero-based column numbersPedro J. Estébanez2016-10-131-5/+5
|/ / /
* | | Merge pull request #6775 from RandomShaper/one-based-col-numbersRémi Verschelde2016-10-111-1/+1
|\ \ \
| * | | Make text column numbers one-basedPedro J. Estébanez2016-10-101-1/+1
* | | | Merge pull request #6694 from bojidar-bg/gdscript-newline-functionsRémi Verschelde2016-10-111-2/+30
|\ \ \ \
| * | | | Allow for linebreaks in function calls and definitions and yeild/signal.Bojidar Marinov2016-10-031-2/+30
| | |/ / | |/| |
* | | | i18n: Fix string that broke msgmergeRémi Verschelde2016-10-091-1/+1
| |/ / |/| |
* | | Merge pull request #6730 from Faless/fix_export_crash_errorRémi Verschelde2016-10-091-0/+10
|\ \ \
| * | | Throw an error when exporting a resource classFabio Alessandrelli2016-10-061-0/+10
| |/ /
* / / Add warning when (pre)loading paths with leading / (#4280 - #3106)Fabio Alessandrelli2016-10-042-1/+14
|/ /
* | Fix build for templatesGeorge Marques2016-09-122-0/+6
* | Do ctrl-click on any code identifier to go to definiton or help page.Juan Linietsky2016-09-125-1/+482
* | Merge pull request #6281 from bojidar-bg/gdscript-ternary-operatorJuan Linietsky2016-09-113-14/+125
|\ \
| * | Ternary operator in GDScript (a if x else b)Bojidar Marinov2016-08-253-14/+125
* | | Added constants from types in code completion, somehow this was never added.Juan Linietsky2016-09-111-1/+12
* | | Merge pull request #5920 from 29jm/fix-warningsJuan Linietsky2016-09-102-3/+3
|\ \ \
| * | | Fix some comparisons between signed and unsigned integersJohan Manuel2016-08-131-2/+2
| * | | Fix some warnings about misleading indentationJohan Manuel2016-08-131-2/+2
| * | | Remove some unused variablesJohan Manuel2016-08-131-1/+1
* | | | Merge pull request #6292 from bojidar-bg/gdscript-add-enumsJuan Linietsky2016-09-103-0/+111
|\ \ \ \
| * | | | Add enum naming, by assinging a given enum's values to a DictBojidar Marinov2016-08-271-0/+20
| * | | | Adds enums to GDScriptBojidar Marinov2016-08-273-0/+91
| | |/ / | |/| |
* | | | Renamed the bind_native functions to bind_vararg, should make it show the doc...Juan Linietsky2016-09-072-2/+2
* | | | Clean up GDScript templateRăzvan Cosmin Rădulescu2016-09-051-7/+5
* | | | More visual script workJuan Linietsky2016-08-252-0/+11
|/ / /
* | | Proper function/property selection in visual script editing for property.Juan Linietsky2016-08-232-0/+38
* | | Brand new networked multiplayerJuan Linietsky2016-08-1910-62/+253
* | | Merge pull request #6055 from eska014/native-bind-rettypeRémi Verschelde2016-08-081-1/+1
|\ \ \
| * | | Allow documenting unexposed return types in bind_native_methodeska2016-08-061-1/+1
* | | | Merge pull request #6045 from bojidar-bg/extends-on-placeholdersRémi Verschelde2016-08-081-2/+1
|\ \ \ \
| * | | | Fix #5891 by not expecting the script instance to be a GDInstanceBojidar Marinov2016-08-051-2/+1
* | | | | Added a simpler way to do sub-functions in both visual and gdscript with the ...Juan Linietsky2016-08-082-1/+32
* | | | | Added yield() signal smart autocompletion.Juan Linietsky2016-08-063-1/+34
* | | | | Likely with bugs and with some features are missing, as well as profiler supp...Juan Linietsky2016-08-061-1/+1
* | | | | VisualScript can now execute visual scripts, but there is no debugger or prof...Juan Linietsky2016-08-052-3/+10
|/ / / /