summaryrefslogtreecommitdiffstats
path: root/modules/gdscript
Commit message (Collapse)AuthorAgeFilesLines
* Fix stringification of ProjectionRémi Verschelde2024-11-252-0/+2
|
* Merge pull request #99545 from KoBeWi/Vector4.0Thaddeus Crews2024-11-252-7/+12
|\ | | | | | | Fix stringification of Vector4
| * Fix stringification of Vector4kobewi2024-11-222-7/+12
| |
* | Merge pull request #99424 from dalexeev/core-fix-builtin-enum-const-bindsThaddeus Crews2024-11-229-20/+142
|\ \ | | | | | | | | | Core: Fix built-in enum constant bindings
| * | Core: Fix built-in enum constant bindingsDanil Alexeev2024-11-229-20/+142
| |/
* / Improve GDScript autocompletion for methodsLazy-Rabbit-20012024-11-2252-113/+126
|/
* Fix crash when division by zero/modulo by zero happen on vectorsChaosus2024-11-215-2/+37
|
* Use `(r)find_char` instead of `(r)find` for single charactersA Thousand Ships2024-11-173-4/+4
|
* Merge pull request #98099 from dalexeev/pot-gen-add-comment-supportThaddeus Crews2024-11-154-10/+105
|\ | | | | | | POT Generator: Add support for `TRANSLATORS:` and `NO_TRANSLATE` comments
| * POT Generator: Add support for `TRANSLATORS:` and `NO_TRANSLATE` commentsDanil Alexeev2024-10-134-10/+105
| |
* | Add back `AnimationPlayer.get_argument_options`HolonProduction2024-11-157-0/+46
| |
* | Merge pull request #97218 from wenqiangwang/local_debuggger_expr_evalulationThaddeus Crews2024-11-121-1/+25
|\ \ | | | | | | | | | Add support for `print` command in local (command line `-d`) debugger
| * | Added support for 'print' command in local (command line -d) debuggerWenqiang2024-09-281-1/+25
| | |
* | | Merge pull request #99020 from Mickeon/documentation-example-pruning-2Thaddeus Crews2024-11-121-2/+1
|\ \ \ | | | | | | | | | | | | Clean up more `[b]Example:[/b]` lines from the class reference
| * | | Clean up more `[b]Example:[/b]` lines from the class referenceMicky2024-11-111-2/+1
| | | |
* | | | Document exporting nested subgroupsDanil Alexeev2024-11-111-1/+13
| | | |
* | | | Fix analyzer pushing SHADOWED_VARIABLE warning for members shadowed in ↵girdenis-p2024-11-0614-40/+81
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | subclasses This fixes a bug in the analyzer where it did not push the SHADOWED_VARIABLE_BASE_CLASS warning for members shadowed by variable in subclass. It does this by comparing the class which contains the shadowed member with the class containing the variable, and pushing SHADOWED_VARIABLE only if the classes are the same. Additionally, SHADOWED_VARIABLE_BASE_CLASS can take an extra symbol which helps to specify the line for non native base class.
* | | | Style: Apply `clang-tidy` fixes (superficial)Thaddeus Crews2024-11-041-2/+4
| | | | | | | | | | | | | | | | • `modernize-use-bool-literals`, `modernize-use-nullptr`, and `readability-braces-around-statements`
* | | | Merge pull request #47502 from KoBeWi/add_0Thaddeus Crews2024-10-3117-97/+96
|\ \ \ \ | | | | | | | | | | | | | | | Always add decimal when converting float to string
| * | | | Always add decimal when printing floatkobewi2024-10-2317-97/+96
| | | | |
* | | | | Merge pull request #98301 from aaronp64/gdscript_validate_propertyThaddeus Crews2024-10-291-3/+3
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | Avoid unnecessary `Dictionary` conversions in `GDScriptInstance::validate_property`
| * | | | | Avoid unnecessary Dictionary conversions in GDScriptInstance::validate_propertyaaronp642024-10-181-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | Updated GDScriptInstance::validate_property to only convert PropertyInfo to Dictionary if _validate_property function is found.
* | | | | | Merge pull request #97934 from adamscott/give-AThousandShips-a-breakThaddeus Crews2024-10-291-1/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | [Codestyle] Set clang-format `RemoveSemicolon` rule to `true`
| * | | | | | Set clang-format `RemoveSemicolon` rule to `true`Adam Scott2024-10-251-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - Set clang-format `Standard` rule to `c++20`
* | | | | | | Merge pull request #96499 from beev1s/shallow-script-cache-errorThaddeus Crews2024-10-253-1/+23
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Fix resource loader not resolving shallow loaded scripts through dependencies
| * | | | | | | Fixed resource loader using not fully loaded scriptsMoritz Burgdorff2024-09-143-1/+23
| | | | | | | |
* | | | | | | | Merge pull request #96927 from HolonProduction/completion-inner-class-base-crashThaddeus Crews2024-10-251-1/+3
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | Autocompletion: Don't use owner for inner classes
| * | | | | | | | Autocompletion: Don't use owner for inner classesHolonProduction2024-10-131-1/+3
| | |_|_|_|_|_|/ | |/| | | | | |
* | | | | | | | GDScript: Rework `GDScriptUtilityFunctions` macrosDanil Alexeev2024-10-254-316/+193
| |_|/ / / / / |/| | | | | |
* | | | | | | Merge pull request #98356 from dustdfg/gdscript_endif_readability_commentsClay John2024-10-246-20/+24
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Add some comments to `#endif's` where it helps readability
| * | | | | | | Add some comments to #endif's where it will easier lifeYevhen Babiichuk (DustDFG)2024-10-216-20/+24
| | |_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also added some new line to improve readability Signed-off-by: Yevhen Babiichuk (DustDFG) <dfgdust@gmail.com> Co-authored-by: Danil Alexeev <danil@alexeev.xyz>
* | | | | | | Merge pull request #98400 from rune-scape/fix-typed-dict-cached-parserClay John2024-10-242-4/+12
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | GDScript: Fix cached parser error when using typed Dictionaries
| * | | | | | | GDScript: Fix cached parser error when using typed Dictionariesrune-scape2024-10-222-4/+12
| |/ / / / / /
* | | | | | | Merge pull request #98169 from HolonProduction/only-highlight-exposedThaddeus Crews2024-10-241-1/+3
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | GDScript: Don't highlight unexposed classes
| * | | | | | | GDScript: Don't highlight unexposed classesHolonProduction2024-10-141-1/+3
| | |/ / / / / | |/| | | | |
* | | | | | | Merge pull request #97374 from rune-scape/get-native-static-callableThaddeus Crews2024-10-243-2/+20
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | GDScriptNativeClass: Allow getting static function as callable
| * | | | | | | GDScriptNativeClass: Allow getting static function as callablerune-scape2024-09-233-2/+20
| | | | | | | |
* | | | | | | | Clarification to the description of Global scope in regards to GDScriptBrian Huynh2024-10-231-2/+2
| |_|_|_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previous wording said that @GDScript referred to entries that could be accessed in any script. Although with common sense we could imagine that it is only refering to GDScript specific pieces of code, the wording is a little unclear. In general there are small changes to the wording which makes it more clear and concise. Wording change Tried to match the wording up with my last change which should make it a bit easier to parse at a glance what the docs mean by "from any script" Changed language from "not specific to" to "which work in any language" After consulting multiple people the new wording seems easier to parse, even for non coders Update doc/classes/@GlobalScope.xml Update modules/gdscript/doc_classes/@GDScript.xml Update modules/gdscript/doc_classes/@GDScript.xml Co-Authored-By: Micky <66727710+Mickeon@users.noreply.github.com>
* | | | | | | Merge pull request #98146 from ↵Thaddeus Crews2024-10-215-7/+19
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | HolonProduction/this-error-does-not-apply-to-unrecognized-annotations GDScript: Fix annotation parsing adding new annotation entries
| * | | | | | | GDScript: Fix annotation parsing adding new annotation entriesHolonProduction2024-10-135-7/+19
| | |/ / / / / | |/| | | | |
* | | | | | | Merge pull request #97542 from AThousandShips/dict_sort_fixThaddeus Crews2024-10-211-1/+1
|\ \ \ \ \ \ \ | |_|_|/ / / / |/| | | | | | | | | | | | | [Core] Fix sorting of `Dictionary` keys
| * | | | | | [Core] Fix sorting of `Dictionary` keysA Thousand Ships2024-10-181-1/+1
| |/ / / / / | | | | | | | | | | | | | | | | | | `StringName` keys were sorted as `StringName` which is unstable.
* / / / / / GDScript: Add missing static default initialization for typed dictionariesDanil Alexeev2024-10-111-1/+7
|/ / / / /
* | | | | Fix lookup symbol for enum members to search a correct code definitionChaosus2024-10-082-4/+25
| | | | |
* | | | | Create `.editorconfig` file only on project creationHaoyu Qiu2024-10-051-2/+0
| | | | |
* | | | | GDScript: Fix `GDScriptCache::get_full_script()` uses non-remapped pathDanil Alexeev2024-10-031-4/+8
| | | | |
* | | | | Merge pull request #97727 from SlugFiller/llvm-computed-gotoRémi Verschelde2024-10-021-1/+1
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | Enable use of Labels as Values feature in Clang when not wrapped by GCC
| * | | | | Enable use of Labels as Values feature in Clang when not wrapped by GCCSlugFiller2024-10-021-1/+1
| | | | | |
* | | | | | Merge pull request #97281 from reptofrog/deadzone-new-defaultRémi Verschelde2024-10-021-1/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | Input: Change the default deadzone value for new actions from 0.5 to 0.2
| * | | | | | Changed the default deadzone value for new actions from 0.5 to 0.2Roman Morozov2024-10-011-1/+1
| | |/ / / / | |/| | | |