Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-01-06 | Add tests for FastNoiseLite/NoiseTexture | Hendrik Brucker | |
+ fix some issues with seamless noise generation | |||
2023-01-05 | One Copyright Update to rule them all | Rémi Verschelde | |
As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see". | |||
2022-12-29 | Add safety-checks before some servers `free()` | Adam Scott | |
2022-11-29 | Use forward-declarations in big editor classes | trollodel | |
2022-11-11 | Use forward-declarations in EditorPlugin where possible | trollodel | |
2022-11-09 | Fix default values on virtual classes causing errors in projects | Aaron Franke | |
2022-10-14 | Make some Image methods static | kobewi | |
2022-10-07 | Fix MSVC warnings, rename shadowed variables, fix uninitialized values, ↵ | bruvzg | |
change warnings=all to use /W4. | |||
2022-10-03 | Remove NO_THREADS fallback code, Godot 4 requires thread support | Rémi Verschelde | |
This also removes `OS::can_use_threads` from the public API since it's always true. | |||
2022-08-27 | Rename `hint_tooltip` to `tooltip_text` & setget | Micky | |
`hint_tooltip` -> `tooltip_text` `set_tooltip` -> `set_tooltip_text` `_get_tooltip` -> `get_tooltip_text` Updates documentation, too. | |||
2022-08-24 | Rename 2D NoiseTexture to NoiseTexture2D | Aaron Franke | |
2022-08-22 | Make `_validate_property` a multilevel method | Yuri Sizov | |
2022-08-18 | Remove unintentional PROPERTY_USAGE_INTERNAL | RedMser | |
The flag only matters for property definition, but was also used in _validate_property a lot. | |||
2022-08-08 | Rename the argument tag to param in XML documentation | Yuri Sizov | |
2022-07-18 | Rename Control PRESET_WIDE to PRESET_FULL_RECT | FireForge | |
2022-06-11 | Add suffixes to all nodes and resources | FireForge | |
2022-05-18 | Fix noise offset not affecting domain warp | Hendrik Brucker | |
- also added domain warp to get_noise_1d | |||
2022-05-16 | Fix domain warp fractal type defaulting to the wrong value (and refactor ↵ | Hendrik Brucker | |
enum conversion) | |||
2022-05-04 | Refactor module initialization | reduz | |
* 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). | |||
2022-05-01 | Validate image size for Noise get image methods | Haoyu Qiu | |
2022-04-27 | Merge pull request #60384 from timothyqiu/noise-skirt | Rémi Verschelde | |
2022-04-20 | Validate input in NoiseTexture::set_seamless_blend_skirt() | Haoyu Qiu | |
2022-04-19 | Restructure and refine the noise module | Hendrik Brucker | |
2022-04-16 | Add spaces to FastNoiseLite enum hint names | FireForge | |
2022-04-06 | Fix some issues found by cppcheck. | bruvzg | |
2022-04-05 | Fix `NoiseTexture._generate_texture` crash | Paweł Fertyk | |
Fixes #59915 . | |||
2022-04-04 | Zero initialize all pointer class and struct members | Rémi Verschelde | |
This prevents the pitfall of UB when checking if they have been assigned something valid by comparing to nullptr. | |||
2022-03-31 | Fix group name in FastNoise and Gradient | FireForge | |
2022-03-20 | Add FastNoiseLite / general noise overhaul | Hendrik Brucker | |
- replace OpenSimplexNoise Co-authored-by: Cory Petkovsek <tinmanjuggernaut@users.noreply.github.com> |