Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-10-08 | Randomize RandomNumberGenerator instances' default seed | Anutrix | |
2022-08-11 | [doc] Use "param" instead of "code" to refer to parameters (4) | Andy Maloney | |
2022-08-08 | Rename the argument tag to param in XML documentation | Yuri Sizov | |
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-15 | Replace Godot docs URL with `$DOCS_URL` in XML class reference | Rémi Verschelde | |
2021-09-20 | Don't generate empty doc sections and reduce code duplication | Aaron Franke | |
2021-08-22 | Replace HTTP links with HTTPS for sites with HTTPS versions | 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. | |||
2021-07-02 | Improve and clarify documentation for RandomNumberGenerator | Hugo Locurcio | |
2021-06-11 | Rename Reference to RefCounted | Pedro J. Estébanez | |
2020-12-07 | Add ability to restore `RandomNumberGenerator` state | Andrii Doroshenko (Xrayez) | |
- added `state` as a property to restore internal state of RNG; - `get_seed()` returns last seed used to initialize the state rather than the current state. Co-authored-by: MidZik <matt.idzik1@gmail.com> | |||
2020-11-05 | doc: Override default value for RandomNumberGenerator.seed | Rémi Verschelde | |
It's non-deterministic so it's better to show a fixed value like 0 instead of having it potentially change whenever `randomize()` is called. Fixes #43317. | |||
2020-10-14 | Link the Random number generation tutorial in the class reference | Hugo Locurcio | |
2020-01-31 | Update docs to version 4.0 | clayjohn | |
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. | |||
2019-06-30 | Added example on how to use RandomNumberGenerator | tree786 | |
2019-06-30 | doc: Add default values to all properties | Rémi Verschelde | |
Thanks to @bojidar-bg's impressive work in #29380. | |||
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-04-19 | doc: Drop unused <demos> tag | Rémi Verschelde | |
2019-04-09 | Merge pull request #27591 from toasteater/doc/rng-impl-notes | Rémi Verschelde | |
Improve RandomNumberGenerator docs. | |||
2019-04-07 | Merge pull request #27043 from Chaosus/randfn | Yuri Roubinsky | |
Added gaussian distribution function to RNG | |||
2019-04-02 | Improve RandomNumberGenerator docs. | toasteater | |
Clarified behavior of a few methods. Added implementation notes so that developers not familiar with RNGs are alerted to common pitfalls. | |||
2019-04-01 | doc: Bump version to 3.2 | Rémi Verschelde | |
2019-03-17 | Added normally distributed generation function to RNG | Chaosus | |
2019-02-18 | doc: Fix style issues | Rémi Verschelde | |
2018-12-13 | doc: Sync classref with current source | Rémi Verschelde | |
2018-12-06 | Added integer number generation function to RNG class | Chaosus | |
2018-11-13 | doc: Sync classref with current source | Rémi Verschelde | |
2018-11-13 | Implement random number generator | Chaosus | |
Co-authored-by: Zirak <zirakertan@gmail.com> |