summaryrefslogtreecommitdiffstats
path: root/doc/classes/ScriptLanguageExtension.xml
Commit message (Collapse)AuthorAgeFilesLines
* Fix virtual binding for `ScriptLanguageExtension::_reload_scripts`voidedWarranties2024-08-171-0/+7
|
* Expose several EngineDebugger methods and signals as plugin callbacksChris Cranford2024-06-101-0/+7
|
* Allow configuring the script filename casing ruleRedMser2024-03-051-0/+5
| | | | | | Defaults to "Auto", which detects the casing based on the preference of the currently selected language (C# for example prefers PascalCase whereas GDScript prefers snake_case).
* Overhaul some "uncommon" wording in class referenceMicky2024-03-011-1/+1
|
* Merge pull request #87952 from paulloz/dotnet/byebye-signal-callback-generationRémi Verschelde2024-02-151-0/+5
|\ | | | | | | Disable signal callback generation in C#
| * Disable signal callback generation in C#Paul Joannon2024-02-141-0/+5
| |
* | Documentation: Add support for deprecated/experimental messagesDanil Alexeev2024-02-151-2/+1
|/
* Fix `ScriptLanguageExtension::_find_function` documentationEmmanuel Leblond2023-12-261-2/+3
|
* Fix missing time for some script functions in profilermsreis2023-12-191-0/+6
| | | | | | | | | Fixes the issue by adding a mechanism by which the functions that were previously disappearing can be profiled too. This is optional with an editor setting, since collecting more information naturally slows the engine further while profiling. Fixes #23715, #40251, #29049
* Highlight doc comments in a different colorDanil Alexeev2023-10-081-0/+5
|
* Editor: Remove unused Class Name field from Create Script dialogDanil Alexeev2023-09-121-1/+2
|
* Doctool: Remove version attribute from XML headerRémi Verschelde2023-07-061-1/+1
| | | | | | We don't use that info for anything, and it generates unnecessary diffs every time we bump the minor version (and CI failures if we forget to sync some files from opt-in modules (mono, text_server_fb).
* Bump version to 4.2-devRémi Verschelde2023-07-051-1/+1
| | | | Keep on waitin'
* sort code completions with rulesajreckof2023-05-231-1/+1
| | | | | | | | | | | | | | | | | | | Fixups Add levenshtein distance for comparisons, remove kind sort order, try to improve as many different use cases as possible Trying again to improve code completion Sort code autocompletion options by similarity based on input To make it really brief, uses a combination `String.similiary`, the category system introduced in a previous PR, and some filtering to yield more predictable results, instead of scattering every completion option at seemingly random. It also gives much higher priority to strings that contain the base in full, closer to the beginning or are perfect matches. Also moves CodeCompletionOptionCompare to code_edit.cpp Co-Authored-By: Micky <66727710+Mickeon@users.noreply.github.com> Co-Authored-By: Eric M <41730826+EricEzaM@users.noreply.github.com>
* Fix various typos in the classrefHaoyu Qiu2023-04-181-1/+1
|
* Bump version to 4.1-devRémi Verschelde2023-03-011-1/+1
| | | | Can't stop, won't stop, they said, huh?
* Remove unused `ScriptLanguage` methodsvoidedWarranties2023-02-261-30/+0
|
* Rename the argument tag to param in XML documentationYuri Sizov2022-08-081-63/+63
|
* Add support for documenting built-in annotationsYuri Sizov2022-07-041-1/+8
|
* Fix signal completion in GDScript editorYuri Rubinsky2022-05-121-3/+5
|
* Improve sorting of Code Completion options.Eric M2022-04-011-0/+12
| | | | Done by ordering options by their location in the code - e.g. local, parent class, global, etc.
* Add GDExtension support to Scriptreduz2022-03-271-0/+404
* Ability to create script languages from GDExtension * Some additions to gdnative_extension.h to make this happen * Moved the GDExtension binder to core This now allows creating scripting languages from GDExtension, with the same ease as if it was a module. It replaces the old PluginScript from Godot 3.x. Warning: GodotCPP will need to be updated to support this (it may be a bit of work as ScriptInstance needs to be created over there again).