summaryrefslogtreecommitdiff
path: root/modules/opensimplex/doc_classes
AgeCommit message (Collapse)Author
2019-07-15doc: Sync classref with current sourceRémi Verschelde
2019-06-30doc: Add default values to all propertiesRémi Verschelde
Thanks to @bojidar-bg's impressive work in #29380.
2019-06-27Proofread and improve the whole class referenceHugo 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-06-17Added description to get_noise_1d() in OpenSimplexNoiseunknown
2019-04-22Merge pull request #28125 from KoBeWi/code_true_codeRémi Verschelde
Consistently wrap booleans in [code]
2019-04-19doc: Drop unused <demos> tagRémi Verschelde
2019-04-17Consistently wrap booleans in [code]Tomasz Chabora
2019-04-15doc: Sync classref with current sourceRémi Verschelde
2019-04-01doc: Bump version to 3.2Rémi Verschelde
2019-03-07doc: Sync classref with current sourceRémi Verschelde
2018-10-25doc: Sync with current sourceRémi Verschelde
2018-10-07Update class documentation xmlKelly Thomas
2018-10-03Remove redundant size property from NoiseTextureJFonS
2018-09-28 Renaming SimplexNoise refs to OpenSimplexNoisesantouits
Because I think github doesn't show history of renamed files - The original work is done in commit f12a1b8 by JFonS - Improved Documentation in commit a386af6 - Last change on the files was in commit 463af5b - and Fixed compiler warnings in commit e5bbcb8bcf8180a54fdcc5c4291b153246d861ce
2018-09-21doc: Misc formatting fixesRémi Verschelde
2018-09-21doc: Sync classref with current sourceRémi Verschelde
2018-09-20Fix typo in SimplexNoise documentationJFonS
2018-09-19Replace "persistance" with "persistence"JFonS
Replace "persistance" with "persistence" in the simplex code. Also made some minor fixes to the docs.
2018-09-19Improve SimplexNoise documentation and fix typosHugo Locurcio
Spaces were added after code blocks to ensure correct rendering on the online class reference.
2018-09-15Clearly deprecate sync too in favor of remotesync.Fabio Alessandrelli
NOTE: This changes the RPC_MODE_* enum values. Games should be re-exported. GDNative rebuilt.
2018-09-14Add SimplexNoise and NoiseTexture as new resourcesJFonS
SimplexNoise can be used to generate parameterized fractal noise based on Open Simplex. NoiseTexture uses SimplexNoise to generate noise textures for using in shaders/visual effects.