Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-04-04 | Fix misformatted documentation from #47435, #42827, #46991 | Yuri Sizov | |
2021-03-21 | Rename Array.invert() to Array.reverse() | Marcel Admiraal | |
Does the same internally for List and Vector<>, which includes all PackedArray types. | |||
2021-03-18 | doc: Sync classref with current source | Rémi Verschelde | |
And move GLTF docs to its module folder. | |||
2021-02-26 | Fixes typo in Array::bsearch_custom doc | Haoyu Qiu | |
2021-02-04 | Change sort_custom/bsearch_custom to use Callables | kobewi | |
2021-01-26 | Merge pull request #44624 from Calinou/doc-array-hash | Rémi Verschelde | |
Improve the `Array.hash()` documentation | |||
2021-01-26 | Document low performance of `Array.push_front()` and `Array.pop_front()` | Hugo Locurcio | |
2021-01-04 | doc: Sync classref with current source | Rémi Verschelde | |
2020-12-28 | Rename empty() to is_empty() | Marcel Admiraal | |
2020-12-23 | Improve the `Array.hash()` documentation | Hugo Locurcio | |
Co-authored-by: Laguzus <67963093+Laguzus@users.noreply.github.com> | |||
2020-11-14 | Improve the Dictionary class documentation | Hugo Locurcio | |
- Mention Lua-style syntax. - Make the code samples self-contained. - Mention caveat with `const` (also in Array). - Clarify the description of `size()`. This closes https://github.com/godotengine/godot-docs/issues/4272. | |||
2020-11-10 | Merge pull request #43437 from akien-mga/doc-operators | Rémi Verschelde | |
doc: Add template to document Variant operators, fixups to #43419 | |||
2020-11-10 | doc: Sync classref to add operators after #43419 | Rémi Verschelde | |
2020-11-10 | Merge pull request #43398 from ↵ | Rémi Verschelde | |
KoBeWi/add_an_array_to_another_array_but_with_a_method Add append_array() method to Array class | |||
2020-11-09 | Variant: Sync docs with new constructors, fixups after #43403 | Rémi Verschelde | |
Change DocData comparators for MethodDoc and ArgumentDoc to get a better ordering of constructors. | |||
2020-11-08 | Add append_array() method to Array class | Tomasz Chabora | |
2020-11-04 | doc: Sync classref with current source + fixup some bindings | Rémi Verschelde | |
Includes various changes triggered by the refactoring of method bindings. | |||
2020-09-26 | Add C# code examples to the docs | HaSa1002 | |
Only existing GDScript code examples are converted and added to the docs. This is the first batch include classes beginning with A and B. Included classes: * AcceptDialog * AESContext * Animation * AnimationNodeStateMachine * AnimationNodeStateMachinePlayback * AnimationNodeStateMachineTransition * Array * ArrayMesh * AStar * AStar2D * Bool * Button | |||
2020-09-21 | Fix a typo in the Array class documentation | Hugo Locurcio | |
This closes https://github.com/godotengine/godot-docs/issues/4049. | |||
2020-09-09 | Improve documentation related to Array error handling | Hugo Locurcio | |
This closes https://github.com/godotengine/godot-docs/issues/3834. | |||
2020-08-12 | Mention that Array.front/back throw error if empty | Tomasz Chabora | |
2020-07-13 | Commit other files changed by file_format.sh | Aaron Franke | |
2020-06-12 | Document the `in` operator in String, Array and Dictionary classes | Hugo Locurcio | |
This also clarifies the `in` operator behavior in Object. | |||
2020-05-16 | Document that Dictionary is always passed as reference | Hugo Locurcio | |
See #38792. | |||
2020-03-18 | doc: Sync classref with current source | Rémi Verschelde | |
Fix wrong binding after #37111. | |||
2020-03-09 | DocData: Fix serialization of Variant default values | Rémi Verschelde | |
Co-authored-by: Bojidar Marinov <bojidar.marinov.bg@gmail.com> | |||
2020-02-27 | doc: Mention concatenation using the `+` operator in Array | Hugo Locurcio | |
This closes https://github.com/godotengine/godot-docs/issues/2452. | |||
2020-02-25 | doc: Sync classref for Packed{Int,Float}{32,64}Array additions | Rémi Verschelde | |
2020-02-22 | doc: Sync classref with apparent Variant return type changes | Rémi Verschelde | |
Part of those seem bogus, methods like Array.back()/front() should return a Variant and not void. | |||
2020-02-18 | doc: Sync classref with current source | Rémi Verschelde | |
Handle removal of Pool*Array types and other recent changes. | |||
2020-02-01 | Merge pull request #35809 from clayjohn/DOCS-update-version | Rémi Verschelde | |
Update docs to version 4.0 | |||
2020-01-31 | Update docs to version 4.0 | clayjohn | |
2020-01-31 | doc: Add an example for `Array.sort()` | Hugo Locurcio | |
This may help people understand the difference between alphabetical and natural order more quickly. | |||
2020-01-26 | doc: Drop unused 'category' property from header | Rémi Verschelde | |
We already removed it from the online docs with #35132. Currently it can only be "Built-In Types" (Variant types) or "Core" (everything else), which is of limited use. We might also want to consider dropping it from `ClassDB` altogether in Godot 4.0. | |||
2020-01-23 | Remove unnecessary extra spaces before comments in code examples. | Michael Alexsander | |
2020-01-10 | sort_custom description and example updated | cajallen | |
2019-12-22 | Be more specific about array return values. | Ryan Roden-Corrent | |
The prior docs weren't clear if {pop_,}{front,back} would fail or return `null` on an empty array. | |||
2019-11-02 | Code format for true/false/null to make documentation consistent | PouleyKetchoupp | |
2019-09-24 | doc: Sync classref with current source | Rémi Verschelde | |
Fix a few missing bindings or unspecified argument names and default values. | |||
2019-09-14 | Add array slice method | Cameron Reikes | |
2019-06-27 | Proofread and improve the whole class reference | Hugo Locurcio | |
- Document a few more properties and methods - Add more information to many classes - Fix lots of typos and gramar mistakes - Use [code] tags for parameters consistently - Use [b] and [i] tags consistently - Put "Warning:" and "Note:" on their own line to be more visible, and make them always bold - Tweak formatting in code examples to be more readable - Use double quotes consistently - Add more links to third-party technologies | |||
2019-05-11 | updated description of Array.shuffle to properly describe that it uses the ↵ | hbina085 | |
same common seed at every runtime, thus being reproducible in general | |||
2019-04-22 | Merge pull request #28125 from KoBeWi/code_true_code | Rémi Verschelde | |
Consistently wrap booleans in [code] | |||
2019-04-19 | doc: Drop unused <demos> tag | Rémi Verschelde | |
2019-04-17 | Consistently wrap booleans in [code] | Tomasz Chabora | |
2019-04-01 | doc: Bump version to 3.2 | Rémi Verschelde | |
2019-02-24 | [DOCS] Minor classref updates. | Chris Bradfield | |
2018-12-14 | doc: Fix formatting in code blocks | Rémi Verschelde | |
2018-09-23 | [Docs] Remove double-spaces from descriptions, as well a couple other small ↵ | LikeLakers2 | |
fixes | |||
2018-09-10 | Fix mistake in Array.xml | VirtualBox | |