summaryrefslogtreecommitdiffstats
path: root/doc/classes/RandomNumberGenerator.xml
Commit message (Collapse)AuthorAgeFilesLines
* Rebranding: Doc/Dubhghlas McLaughlin2024-10-161-1/+1
|
* Fix `RandomNumberGenerator::rand_weighted` return typeDavid Luevano Alvarado2024-03-021-3/+3
|
* Merge pull request #89036 from Mickeon/documentation-uncommon-words-2Rémi Verschelde2024-03-011-1/+2
|\ | | | | | | Overhaul some "uncommon" wording in class reference
| * Overhaul some "uncommon" wording in class referenceMicky2024-03-011-1/+2
| |
* | Add RandomNumberGenerator::rand_weighted methodJoão Henrique Machado Silva2024-02-291-0/+19
|/
* Replace some "uncommon" words in class referenceMicky2024-01-151-1/+1
|
* Fix sentence in RandomNumberGenerator.xmlcurious-broccoli2023-11-011-1/+1
|
* 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'
* Overhaul the top sections of the class reference (Core classes)VolTer2023-05-191-3/+4
|
* Bump version to 4.1-devRémi Verschelde2023-03-011-1/+1
| | | | Can't stop, won't stop, they said, huh?
* Randomize RandomNumberGenerator instances' default seedAnutrix2022-10-081-2/+1
|
* [doc] Use "param" instead of "code" to refer to parameters (4)Andy Maloney2022-08-111-3/+3
|
* Rename the argument tag to param in XML documentationYuri Sizov2022-08-081-6/+6
|
* Add an XML schema for documentationHugo Locurcio2022-02-151-1/+1
| | | | | | | | 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.
* Replace Godot docs URL with `$DOCS_URL` in XML class referenceRémi Verschelde2021-11-151-1/+1
|
* Don't generate empty doc sections and reduce code duplicationAaron Franke2021-09-201-2/+0
|
* Replace HTTP links with HTTPS for sites with HTTPS versionsAaron Franke2021-08-221-1/+1
|
* doc: Use self-closing tags for `return` and `argument`Rémi Verschelde2021-07-301-24/+12
| | | | | | | | 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.
* Improve and clarify documentation for RandomNumberGeneratorHugo Locurcio2021-07-021-6/+6
|
* Rename Reference to RefCountedPedro J. Estébanez2021-06-111-1/+1
|
* Add ability to restore `RandomNumberGenerator` stateAndrii Doroshenko (Xrayez)2020-12-071-2/+20
| | | | | | | - 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>
* doc: Override default value for RandomNumberGenerator.seedRémi Verschelde2020-11-051-1/+2
| | | | | | | 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.
* Link the Random number generation tutorial in the class referenceHugo Locurcio2020-10-141-0/+1
|
* Update docs to version 4.0clayjohn2020-01-311-1/+1
|
* doc: Drop unused 'category' property from headerRémi Verschelde2020-01-261-1/+1
| | | | | | | | | | 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.
* Added example on how to use RandomNumberGeneratortree7862019-06-301-0/+7
|
* doc: Add default values to all propertiesRémi Verschelde2019-06-301-1/+1
| | | | Thanks to @bojidar-bg's impressive work in #29380.
* Proofread and improve the whole class referenceHugo Locurcio2019-06-271-6/+7
| | | | | | | | | | | | | - 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
* doc: Drop unused <demos> tagRémi Verschelde2019-04-191-2/+0
|
* Merge pull request #27591 from toasteater/doc/rng-impl-notesRémi Verschelde2019-04-091-4/+6
|\ | | | | Improve RandomNumberGenerator docs.
| * Improve RandomNumberGenerator docs.toasteater2019-04-021-4/+6
| | | | | | | | | | Clarified behavior of a few methods. Added implementation notes so that developers not familiar with RNGs are alerted to common pitfalls.
* | Merge pull request #27043 from Chaosus/randfnYuri Roubinsky2019-04-071-0/+11
|\ \ | |/ |/| Added gaussian distribution function to RNG
| * Added normally distributed generation function to RNGChaosus2019-03-171-0/+11
| |
* | doc: Bump version to 3.2Rémi Verschelde2019-04-011-1/+1
|/
* doc: Fix style issuesRémi Verschelde2019-02-181-1/+2
|
* doc: Sync classref with current sourceRémi Verschelde2018-12-131-14/+14
|
* Added integer number generation function to RNG classChaosus2018-12-061-2/+13
|
* doc: Sync classref with current sourceRémi Verschelde2018-11-131-11/+11
|
* Implement random number generatorChaosus2018-11-131-0/+52
Co-authored-by: Zirak <zirakertan@gmail.com>