Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Document exporting nested subgroups | Danil Alexeev | 2024-11-11 | 1 | -1/+13 |
| | |||||
* | GDScript: Rework `GDScriptUtilityFunctions` macros | Danil Alexeev | 2024-10-25 | 1 | -1/+1 |
| | |||||
* | Clarification to the description of Global scope in regards to GDScript | Brian Huynh | 2024-10-23 | 1 | -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> | ||||
* | Add `@export_tool_button` annotation for easily creating inspector buttons | Danil Alexeev | 2024-09-27 | 1 | -0/+35 |
| | | | | | | Co-authored-by: jordi <creptthrust@gmail.com> Co-authored-by: K. S. Ernest (iFire) Lee <ernest.lee@chibifire.com> Co-authored-by: Mack <86566939+Macksaur@users.noreply.github.com> | ||||
* | Merge pull request #95749 from Mickeon/documentation-example-pruning | Rémi Verschelde | 2024-08-26 | 1 | -2/+2 |
|\ | | | | | | | Remove empty `[b]Example:[/b]` lines from the class reference | ||||
| * | Remove empty `[b]Example:[/b]` lines from the class reference | Micky | 2024-08-19 | 1 | -2/+2 |
| | | |||||
* | | Fix some invalid code in GDScript class reference | Micky | 2024-08-19 | 1 | -5/+5 |
|/ | |||||
* | GDScript: Fix non-global class export | Danil Alexeev | 2024-06-20 | 1 | -1/+1 |
| | |||||
* | GDScript: Fix some export annotation issues | Danil Alexeev | 2024-05-13 | 1 | -1/+2 |
| | |||||
* | [Doc] Document loading behavior with relative paths | A Thousand Ships | 2024-03-30 | 1 | -1/+1 |
| | |||||
* | Update `@GDScript` documentation | Danil Alexeev | 2024-03-14 | 1 | -1/+5 |
| | |||||
* | Editor Help: Add syntax highlighting for code blocks | Danil Alexeev | 2024-03-09 | 1 | -6/+6 |
| | |||||
* | GDScript: Add @export_custom annotation | George Marques | 2024-03-07 | 1 | -0/+12 |
| | | | | | | Allows setting any arbitrary hint, hint string, and usage flags. Useful for more complex hints or potential future hints not available as a dedicated annotation. | ||||
* | Support Array and PackedArray in @export_* | Abel Toy | 2024-03-06 | 1 | -10/+37 |
| | |||||
* | Merge pull request #82122 from dalexeev/gds-add-export-hidden-annotation | Rémi Verschelde | 2024-02-27 | 1 | -0/+11 |
|\ | | | | | | | GDScript: Add `@export_storage` annotation | ||||
| * | GDScript: Add `@export_storage` annotation | Danil Alexeev | 2023-12-19 | 1 | -0/+11 |
| | | |||||
* | | Add keywords to improve search in the class reference | Hugo Locurcio | 2024-02-22 | 1 | -1/+1 |
| | | |||||
* | | Move EditorNode setting registration so they are in class reference | Hugo Locurcio | 2024-02-17 | 1 | -1/+1 |
| | | | | | | | | Co-authored-by: Micky <micheledevita2@gmail.com> | ||||
* | | Documentation: Add support for deprecated/experimental messages | Danil Alexeev | 2024-02-15 | 1 | -2/+1 |
| | | |||||
* | | Revert "Add UID support to GDScript files" | Rémi Verschelde | 2024-01-29 | 1 | -9/+1 |
| | | | | | | | | | | | | | | | | | | | | | | This reverts commit c7f68a27ec4b825302998eeb5a400f869cd21cf7. We still think GDScript files need UIDs to allow safe refactoring, but we're still debating what form those should take exactly. So far there seems to be agreement that it shouldn't be done via an annotation as implemented here, so we're reverting this one for now, to revisit the feature in a future PR. | ||||
* | | Add UID support to GDScript files | kobewi | 2024-01-17 | 1 | -1/+9 |
| | | |||||
* | | [GDScript] Add `StringName` support to `@GDScript.len` | A Thousand Ships | 2024-01-02 | 1 | -1/+1 |
|/ | |||||
* | Clarify some descriptions regarding resource cache | kobewi | 2023-12-10 | 1 | -1/+1 |
| | |||||
* | GDScript: Add error when exporting node in non [Node]-derived classes | Danil Alexeev | 2023-10-05 | 1 | -1/+26 |
| | |||||
* | Validate `code` tags for class and member references | Yuri Sizov | 2023-10-03 | 1 | -3/+3 |
| | | | | | | | | This commit also adds means to manually disable warnings in `code` tags where it's a false positive with the new `skip-lint` attribute. Warnings are now enabled on CI to prevent future errors. | ||||
* | Replace `radians` range hint with `radians_as_degrees` | A Thousand Ships | 2023-09-25 | 1 | -2/+2 |
| | |||||
* | Add a type conversion method to Variant Utility and expose to scripting | Aaron Franke | 2023-09-08 | 1 | -1/+2 |
| | |||||
* | Add a script method to get its class icon | Yuri Sizov | 2023-08-24 | 1 | -1/+1 |
| | | | | Co-authored-by: Danil Alexeev <danil@alexeev.xyz> | ||||
* | Merge pull request #80109 from timothyqiu/not-markdown | Yuri Sizov | 2023-08-01 | 1 | -1/+1 |
|\ | | | | | | | Fix invalid use of markdown syntax in classref | ||||
| * | Fix invalid use of markdown syntax in classref | Haoyu Qiu | 2023-08-01 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | Also: * changed `[b]true[/b]` to `[code]true[/code]` * use `[i]` for mathematical constant "e" * use `[b]` for button text & menu item text * improve markups about "tap1" and "tap2" in AudioEffectDelay | ||||
* | | GDScript: Add validation for `@export_node_path` annotation arguments | Danil Alexeev | 2023-07-26 | 1 | -0/+1 |
|/ | | | | Co-authored-by: George Marques <george@gmarqu.es> | ||||
* | Doctool: Remove version attribute from XML header | Rémi Verschelde | 2023-07-06 | 1 | -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-dev | Rémi Verschelde | 2023-07-05 | 1 | -1/+1 |
| | | | | Keep on waitin' | ||||
* | Explain a bit more RPCs options | Gilles Roudière | 2023-06-27 | 1 | -4/+4 |
| | |||||
* | Clarify `@rpc` annotation arguments docs | Danil Alexeev | 2023-06-13 | 1 | -2/+6 |
| | |||||
* | Add more info on the nature of NAN | Ninni Pipping | 2023-05-30 | 1 | -1/+1 |
| | |||||
* | Overhaul the top sections of the class reference (Core classes) | VolTer | 2023-05-19 | 1 | -1/+1 |
| | |||||
* | Rework Navigation Avoidance | smix8 | 2023-05-10 | 1 | -0/+10 |
| | | | | Rework Navigation Avoidance. | ||||
* | Document caveats related to exported project binary resource conversion | Hugo Locurcio | 2023-05-08 | 1 | -0/+1 |
| | |||||
* | Merge pull request #76664 from Xenoparrot/simple-typos | Max Hilbrunner | 2023-05-06 | 1 | -1/+1 |
|\ | |||||
| * | Fixed various typos across the docs | UltraBIF | 2023-05-02 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #76650 from Koyper/gdscript_range_docs | Max Hilbrunner | 2023-05-05 | 1 | -2/+2 |
|\ \ | |/ |/| | |||||
| * | Update @GDScript.xml range docs to iterate backwards. | Koyper | 2023-05-01 | 1 | -2/+2 |
| | | |||||
* | | Add support for static variables in GDScript | George Marques | 2023-04-27 | 1 | -0/+6 |
| | | | | | | | | | | | | | | | | | | | | Which allows editable data associated with a particular class instead of the instance. Scripts with static variables are kept in memory indefinitely unless the `@static_unload` annotation is used or the `static_unload()` method is called on the GDScript. If the custom function `_static_init()` exists it will be called when the class is loaded, after the static variables are set. | ||||
* | | Validate code tags in documentation for potential params | Yuri Sizov | 2023-04-26 | 1 | -1/+1 |
|/ | | | | | | | Adds a check to make_rst to look for matches between the text inside of the [code][/code] tag and known param identifiers. Fixes most of what was revealed. | ||||
* | Fix typo and slightly reword in @GDScript.xml | Araraura | 2023-03-31 | 1 | -1/+1 |
| | | | Fix "the every following property" to "then every following property" and change "is added" to "will be added". | ||||
* | Improve Color8 documentation | Hugo Locurcio | 2023-03-19 | 1 | -1/+2 |
| | | | | | This documents in which situations Color8 is most suited and its precision limitations. | ||||
* | Fix GDScript code style regarding colon | Danil Alexeev | 2023-03-05 | 1 | -2/+2 |
| | |||||
* | Bump version to 4.1-dev | Rémi Verschelde | 2023-03-01 | 1 | -1/+1 |
| | | | | Can't stop, won't stop, they said, huh? | ||||
* | Document `@GDScript.is_instance_of` method | Danil Alexeev | 2023-02-22 | 1 | -0/+14 |
| |