summaryrefslogtreecommitdiffstats
path: root/modules/noise
Commit message (Collapse)AuthorAgeFilesLines
...
* Rename 2D NoiseTexture to NoiseTexture2DAaron Franke2022-08-246-81/+82
|
* Make `_validate_property` a multilevel methodYuri Sizov2022-08-224-16/+16
|
* Remove unintentional PROPERTY_USAGE_INTERNALRedMser2022-08-181-1/+1
| | | | | The flag only matters for property definition, but was also used in _validate_property a lot.
* Rename the argument tag to param in XML documentationYuri Sizov2022-08-081-17/+17
|
* Rename Control PRESET_WIDE to PRESET_FULL_RECTFireForge2022-07-181-1/+1
|
* Add suffixes to all nodes and resourcesFireForge2022-06-111-2/+2
|
* Fix noise offset not affecting domain warpHendrik Brucker2022-05-181-2/+13
| | | | - also added domain warp to get_noise_1d
* Fix domain warp fractal type defaulting to the wrong value (and refactor ↵Hendrik Brucker2022-05-162-18/+23
| | | | enum conversion)
* Refactor module initializationreduz2022-05-042-8/+17
| | | | | | | * Changed to use the same stages as extensions. * Makes the initialization more coherent, helping solve problems due to lack of stages. * Makes it easier to port between module and extension. * removed the DRIVER initialization level (no longer needed).
* Validate image size for Noise get image methodsHaoyu Qiu2022-05-011-0/+4
|
* Merge pull request #60384 from timothyqiu/noise-skirtRémi Verschelde2022-04-271-0/+2
|\
| * Validate input in NoiseTexture::set_seamless_blend_skirt()Haoyu Qiu2022-04-201-0/+2
| |
* | Restructure and refine the noise moduleHendrik Brucker2022-04-1913-241/+487
|/
* Add spaces to FastNoiseLite enum hint namesFireForge2022-04-161-4/+4
|
* Fix some issues found by cppcheck.bruvzg2022-04-061-1/+1
|
* Fix `NoiseTexture._generate_texture` crashPaweł Fertyk2022-04-051-0/+1
| | | | Fixes #59915 .
* Zero initialize all pointer class and struct membersRémi Verschelde2022-04-041-1/+1
| | | | | This prevents the pitfall of UB when checking if they have been assigned something valid by comparing to nullptr.
* Fix group name in FastNoise and GradientFireForge2022-03-311-1/+1
|
* Add FastNoiseLite / general noise overhaulHendrik Brucker2022-03-2014-0/+1950
- replace OpenSimplexNoise Co-authored-by: Cory Petkovsek <tinmanjuggernaut@users.noreply.github.com>