aboutsummaryrefslogtreecommitdiff
path: root/modules (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #8217 from bojidar-bg/gdscript-fix-keyword-callRémi Verschelde2017-07-253-141/+263
|\ | | | | Make GDScript allow some keywords as identifiers
| * Make GDScript allow some keywords as identifiersBojidar Marinov2017-07-233-141/+263
| | | | | | | | | | Fixes #8085 Added some comments around the use of is_token_literal, as discussed.
* | [NativeScript] bound `new` to ClassDBKarroffel2017-07-251-0/+2
| |
* | [GDNative] basic OS detectionKarroffel2017-07-241-2/+11
| |
* | GDNative register_propertyRamesh Ravone2017-07-241-0/+1
| |
* | Merge pull request #9814 from karroffel/nativescript-doublefreeThomas Herzog2017-07-242-3/+3
|\ \ | | | | | | [NativeScript] forgot to uncomment userdata return
| * | [NativeScript] forgot to uncomment userdata returnKarroffel2017-07-242-3/+3
| | |
* | | Merge pull request #9809 from karroffel/nativescript-doublefreeThomas Herzog2017-07-241-35/+1
|\| | | | | | | | [NativeScript] fix double free but on exit
| * | [NativeScript] fix double free but on exitKarroffel2017-07-241-35/+1
| | |
* | | Merge pull request #9764 from Noshyaar/pr-fix2Rémi Verschelde2017-07-242-7/+7
|\ \ \ | |/ / |/| | Add object type hint for docs
| * | Add object type hint for docsPoommetee Ketson2017-07-232-9/+9
| | |
* | | [GDNative] new GDNative APIKarroffel2017-07-2450-2005/+2542
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds GDNative as a separate class type. It can be used to interface with native libraries by using "native calls", which can be registered by modules (and in future other GDNative libraries?). It also reworks the currently called "GDNativeScript" into a "NativeScript" that just makes use of the new GDNative instead of it being the component that implements that functionality.
* | | Merge pull request #9765 from Noshyaar/pr-clangRémi Verschelde2017-07-237-7/+7
|\ \ \ | | | | | | | | Clang-formatting *.cpp and *.h (some files excluded)
| * | | Clang-formatting *.cpp and *.h (some files excluded)Poommetee Ketson2017-07-229-9/+9
| |/ /
* | | Merge pull request #9758 from vnen/fix-vs-returnRémi Verschelde2017-07-231-3/+3
|\ \ \ | | | | | | | | VS: Fix return value for user-defined functions
| * | | VS: Fix return value for user-defined functionsGeorge Marques2017-07-221-3/+3
| |/ /
* | | Merge pull request #9741 from vnen/fix-vs-customnodeRémi Verschelde2017-07-232-3/+13
|\ \ \ | | | | | | | | Fix issues with custom nodes in visual script
| * | | Update a VS custom node when its script changesGeorge Marques2017-07-212-0/+9
| | | |
| * | | Fix issues with custom nodes in visual scriptGeorge Marques2017-07-211-3/+4
| |/ / | | | | | | | | | | | | - Doesn't crash anymore. - Inputs are properly transferred.
* | | Merge pull request #9706 from djrm/theme_fixesRémi Verschelde2017-07-231-4/+1
|\ \ \ | |_|/ |/| | Icons can now be added inside line edits (Search icon).
| * | Icons can now be added inside line edits (Search icon).Daniel J. Ramirez2017-07-191-4/+1
| | | | | | | | | | | | | | | | | | Fixed window title bar margins. fixed compilation error
* | | gdnative bug fix in get (return null check)Ramesh Ravone2017-07-221-2/+5
| |/ |/|
* | -Renamed GlobalConfig to ProjectSettings, makes more sense.Juan Linietsky2017-07-1913-49/+49
| | | | | | | | -Added system for feature overrides, it's pretty cool :)
* | Merge pull request #9699 from RameshRavone/masterThomas Herzog2017-07-192-0/+64
|\ \ | | | | | | [gdnative] `Object::_get` return type and dynamic property
| * | [GDNative] dynamic propertiesRamesh Ravone2017-07-191-0/+62
| | |
| * | _get return type fixRamesh Ravone2017-07-181-0/+2
| |/
* / Add object type hint for docsPoommetee Ketson2017-07-192-4/+4
|/
* -Reorganized all properties of project settings (Sorry, Again).Juan Linietsky2017-07-172-2/+2
| | | | | (Lot's of bloat accumulated, so it was time for clean up.) -Made EditorSettings and ProjectSettings search more useful (search in sections too)
* Merge pull request #9652 from djrm/theme_fixesRémi Verschelde2017-07-171-3/+4
|\ | | | | Improvements and fixes for the default theme.
| * Improvements and fixes for the default theme.Daniel J. Ramirez2017-07-161-3/+4
| | | | | | | | Added customizable border size and window highlight.
* | Many fixes to improve GI Probe qualityJuan Linietsky2017-07-151-0/+1
| |
* | Expose Dictionary::next to GDNativesheepandshepherd2017-07-152-1/+9
|/
* Some more typo fixes for "threshold"Rémi Verschelde2017-07-151-4/+4
| | | | Looks like @reduz really does not like that word.
* [#7212] Fixed missing 'Variant' return values in documentation.ducdetronquito2017-07-111-1/+1
|
* Merge pull request #8573 from neikeq/gdfs-completedRémi Verschelde2017-07-111-0/+34
|\ | | | | Adds "completed" signal to GDFunctionState
| * Adds completed signal to GDFunctionStateIgnacio Etcheverry2017-06-231-0/+34
| |
* | Some changes to dual paraboloid envmap generation, fixes somme bleedingJuan Linietsky2017-07-051-0/+4
| |
* | Merge pull request #9457 from TwistedTwigleg/Fixed_Vector3_snapRémi Verschelde2017-07-032-3/+4
|\ \ | | | | | | Fixed syntax inconsistency in Vector3.snap and Vector3.snapped
| * | Fixed syntax inconsistency in Vector3.snap and Vector3.snappedTwistedTwigleg2017-07-032-3/+4
| | |
* | | -Many fixes to VisualScript, fixed property names, etc.Juan Linietsky2017-06-3013-245/+743
|/ / | | | | | | | | | | -Added ability to set/get a field in GetSet, as well as assignment ops -Added a Select node -Fixed update bugs related to variable list and exported properties, closes #9458
* | Disable etc2comp and tinyexr modules on non-tools buildRémi Verschelde2017-06-302-2/+10
| | | | | | | | | | | | | | They are not necessary in such configuration, and require C++11 and (on Android) the STL. Fixes #9273.
* | Merge pull request #9360 from GodotExplorer/pr-external-editor-language-checkRémi Verschelde2017-06-273-1/+3
|\ \ | | | | | | Better user experience with external text editors.
| * | Better user expirence with external text editors.geequlim2017-06-273-1/+3
| | | | | | | | | | | | | | | Implements open_in_external_editor for subclasses of ScriptLanguage. Add option 'Debug with external editor' to debug menu to control the behavoir of script opened by editor.
* | | -Fixed SCREEN_TEXTURE and other related 2D shader parameters.Juan Linietsky2017-06-264-4/+4
| | | | | | | | | | | | -Fixded BackBuffercopy object
* | | Revert "Revert "Fixed RegEx::search missing return type hint""Rémi Verschelde2017-06-261-1/+1
| | |
* | | Revert "Fixed RegEx::search missing return type hint"Juan Linietsky2017-06-261-1/+1
| | |
* | | Merge pull request #9379 from leezh/regex_bind_fixRémi Verschelde2017-06-261-1/+1
|\ \ \ | | | | | | | | Fixed RegEx::search missing return type hint
| * | | Fixed RegEx::search missing return type hintZher Huei Lee2017-06-261-1/+1
| |/ /
* | | Fixed inverted group thrown off by quantifiersZher Huei Lee2017-06-261-3/+4
| | |
* | | Fixes RegEx capture grabbing too much #9382Zher Huei Lee2017-06-261-6/+13
|/ / | | | | | | | | Incorrect behaviour was caused when next->test was throwing off the results.