Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-05-18 | Docs: Point to @GDScript in GDscript (script impl) | Max Hilbrunner | |
(cherry picked from commit ad21fb0f9261de6a3b82b5267253efb5f6a019fa) | |||
2023-05-12 | Document caveats related to exported project binary resource conversion | Hugo Locurcio | |
(cherry picked from commit febc674f4818dd1185b2e43e899115f70f55b4f5) | |||
2023-05-12 | Fixed various typos across the docs | UltraBIF | |
(cherry picked from commit 8106d33d0f13825b4459898ca20282ba5b543897) | |||
2023-04-03 | Fix typo and slightly reword in @GDScript.xml | Araraura | |
Fix "the every following property" to "then every following property" and change "is added" to "will be added". (cherry picked from commit e1c0df70485266e0385aed4962934bb26cb325e9) | |||
2023-03-27 | Improve Color8 documentation | Hugo Locurcio | |
This documents in which situations Color8 is most suited and its precision limitations. (cherry picked from commit 4e4555bea56fd9fd0734b0d6d0800977f9976b95) | |||
2023-03-13 | Fix GDScript code style regarding colon | Danil Alexeev | |
(cherry picked from commit ea5fd3d732a85029e8372425904971ad26153ff1) | |||
2023-02-22 | Document `@GDScript.is_instance_of` method | Danil Alexeev | |
2023-02-17 | GDScript: Rework type check | Dmitrii Maganov | |
2023-02-14 | Tweak `@GlobalScope` & `GDScript`'s documentation | Micky | |
2023-02-07 | GDScript: Improve validation and documentation of `@export_flags` | Danil Alexeev | |
2023-02-05 | GDScript: Better handling of `@rpc` annotation and autocompletion | Danil Alexeev | |
2023-02-04 | Improve docs for rpc annotations | GeroVeni | |
2023-02-01 | Merge pull request #72371 from dalexeev/remove-gds-str-duplicate | RĂ©mi Verschelde | |
Remove `@GDScript.str` (duplicate of `@GlobalScope.str`) | |||
2023-01-31 | GDScript: Fix `@icon` annotation | Danil Alexeev | |
2023-01-30 | Remove `@GDScript.str` (duplicate of `@GlobalScope.str`) | Danil Alexeev | |
2023-01-30 | GDScript: Fix `@export_enum` works only with `int` | Danil Alexeev | |
2023-01-25 | GDScript: Allow constant expressions in annotations | Danil Alexeev | |
2023-01-20 | Remove references to compiled GDScript in export | George Marques | |
This feature was removed from GDScript so it should not be present on the interface nor in the saved export presets. | |||
2023-01-18 | Update `@icon` definition to add a note | Adam Scott | |
2022-12-19 | Add a note for `inst_to_dict` to prevent using it on built-in instances | Yuri Rubinsky | |
2022-12-01 | Update docs to mention `@icon` only works with global script classes | souplamp | |
Update the docs to clarify that the `@icon` annotation does not work when only attaching a script to a node, and clarify that the script itself must be a globally accessible script type. | |||
2022-10-21 | Merge pull request #67656 from MewPurPur/instanceđŸ§¹ | Max Hilbrunner | |
Fix minor mistakes throughout the documentation | |||
2022-10-21 | Fix small mistakes throughout much of the documentation | VolTer | |
2022-10-18 | Tweak `@GDScript` documentation overall | Micky | |
- Made use of [param] more frequently, - Link to other classes' documentation more often, improve the examples. - Made the writing style closer to how the rest of the documentation is formatted. - Ensure these are called "functions", not "methods". - Add [b]Warning:[/b] where more appropriate than [b]Note:[/b] Most notably, removed " It must be a static string, so format strings can't be used.", as this behavior is actually a bug. | |||
2022-10-03 | Fix hide_slider vs no_slider inconsistency in editor property code | Aaron Franke | |
2022-09-30 | Fix typos with codespell | RĂ©mi Verschelde | |
Using codespell 2.3-dev from current git. And fix typo in `methods.py` for `vsproj=yes` option (still won't work though). | |||
2022-09-28 | Document `print_stack()` and `get_stack()` requiring a debugger connection | Hugo Locurcio | |
2022-09-17 | Spelling correction: change "no" to "not" | I Woithe | |
2022-09-11 | Remove outdated assert example | Jummit | |
2022-09-02 | Rename `or_lesser` range property hint to `or_less` | Hugo Locurcio | |
"less" should be used for quantity, rather than "lesser". Existing scripts that use `or_lesser` in `_get_property_list()` will need to be updated to account for this change. | |||
2022-08-26 | Rename `str2var` to `str_to_var` and similar | Micky | |
Affects the Math class, a good chunk of the audio code, and a lot of other miscellaneous classes, too. - `var2str` -> `var_to_str` - `str2var` -> `str_to_var` - `bytes2var` -> `bytes_to_var` - `bytes2var_with_objects` -> `bytes_to_var_with_objects` - `var2bytes` -> `var_to_bytes` - `var2bytes_with_objects` -> `var_to_bytes_with_objects` - `linear2db` -> `linear_to_db` - `db2linear` -> `db_to_linear` - `deg2rad` -> `deg_to_rad` - `rad2deg` -> `rad_to_deg` - `dict2inst` -> `dict_to_inst` - `inst2dict` -> `inst_to_dict` | |||
2022-08-19 | Add documentation for all annotations | Yuri Sizov | |
2022-08-08 | Rename the argument tag to param in XML documentation | Yuri Sizov | |
2022-08-08 | Add `@GDScript.type_exists` documentation | Raul Santos | |
2022-07-20 | Merge pull request #47935 from HaSa1002/doc-loading-run-time | RĂ©mi Verschelde | |
2022-07-11 | Add default argument bindings to GDScript annotations | Yuri Sizov | |
2022-07-06 | Sync GDScript doc template for new annotations | RĂ©mi Verschelde | |
2022-07-04 | Add support for documenting built-in annotations | Yuri Sizov | |
2022-06-16 | Document how to load Images and MP3 files at run-time | Johannes Witt | |
2022-04-30 | Improve description for GDScript built-in range | Eduardo Rodrigues | |
Rewrites the definition of how the function works. Reworks the style of the examples and adds a negative range example. Changes the while loop to a range loop in the array backwards example. | |||
2022-04-20 | Fix typo in `GDScript::range` doc | Yuri Roubinsky | |
2022-02-18 | Describe usage of float in range documentation | Markus Sauermann | |
2022-02-15 | Add an XML schema for documentation | Hugo Locurcio | |
This makes it easier to spot syntax errors when editing the class reference. The schema is referenced locally so validation can still work offline. Each class XML's schema conformance is also checked on GitHub Actions. | |||
2021-11-25 | Enchance descriptions of @GlobalScope/@GDScript | Yuri Roubinsky | |
2021-11-15 | Replace Godot docs URL with `$DOCS_URL` in XML class reference | RĂ©mi Verschelde | |
2021-11-01 | GDScript gracefully handle debug functions from separate thread | Brian Semrau | |
2021-10-06 | doc: Update links to latest documentation after content reorganization | RĂ©mi Verschelde | |
2021-09-30 | Add an example on iterating an array backwards | Hugo Locurcio | |
This closes https://github.com/godotengine/godot-docs/issues/3472. | |||
2021-09-20 | Don't generate empty doc sections and reduce code duplication | Aaron Franke | |
2021-07-30 | doc: Use self-closing tags for `return` and `argument` | RĂ©mi Verschelde | |
For the time being we don't support writing a description for those, preferring having all details in the method's description. Using self-closing tags saves half the lines, and prevents contributors from thinking that they should write the argument or return documentation there. |