summaryrefslogtreecommitdiffstats
path: root/scene/2d/gpu_particles_2d.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@d09d82d433b03bb3773fd2a8cc8d6ccc2f8739ceSpartan3222024-11-261-1/+4
|\
| * Merge pull request #95711 from TokageItLab/warn-oneshot-propThaddeus Crews2024-11-221-1/+4
| |\ | | | | | | | | | Add hint for oneshot property & warning when it will be updated continuously by Force Continuous in `AnimationMixer`
| | * Add hint for oneshot & warning when it will be updated continuouslySilc Lizard (Tokage) Renew2024-11-111-1/+4
| | |
* | | Merge commit godotengine/godot@c6c464cf9ae56e8b68620af65125dd980d0e8122Spartan3222024-11-021-0/+2
|\| |
| * | Add "Game" editor for better runtime debuggingMichael Alexsander2024-10-301-0/+2
| |/
* | Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
| |
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-111-0/+2
|/ | | | | | | | | | | | | | | | | | | | | | Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* Merge pull request #95132 from LeonStansfield/gpu_particles_ui_consistencyRémi Verschelde2024-10-011-6/+6
|\ | | | | | | GPU/CPU particle parameter list consistency changes
| * Revent DRAW_ORDER_INDEX to DRAW_ORDER_LIFETIME default particle params for ↵Leon Stansfield2024-08-041-1/+1
| | | | | | | | compatibility.
| * Adjusted listings of parameters displayed in inspector to be consistent ↵Leon Stansfield2024-08-041-7/+7
| | | | | | | | accross all particle types
* | Fix GPUParticles Inherit Velocity breaking with physics movementHugo Locurcio2024-07-021-9/+14
|/ | | | | | | | GPUParticles' Inherit Velocity property used to act strangely if the physics tick rate was lower than the rendered FPS, as velocity was tracked in the process and not in the physics process. This means that on certain rendered frames, the velocity was effectively 0 since there was no movement since the last rendered frame.
* Use Core/Scene stringnames consistentlykobewi2024-05-131-1/+0
|
* Add shorthand for using singleton string nameskobewi2024-05-111-1/+1
|
* Revert "Update Node::get_configuration_warnings signature"Rémi Verschelde2024-02-171-2/+2
| | | | This reverts commit d3852deaa450d77edb30df2bb1c77bd7bc45befc.
* Update Node::get_configuration_warnings signatureRedMser2024-02-081-2/+2
|
* Make ShaderMaterial always the last option in inspector resource dropdownsHugo Locurcio2024-02-051-1/+1
| | | | | | | | | ShaderMaterial is the "advanced" option, while the "basic" options should be listed first for easier accessibility (and because they're generally used more often). This makes sky and particle materials consistent with canvas/spatial/fog materials on this aspect.
* Only update particle velocity when it changeskobewi2023-12-231-5/+8
|
* Particle internal refactor and additions for more artistic controlQbieShay2023-10-101-0/+34
| | | | | | | | Co-authored-by: Hugo Locurcio <hugo.locurcio@hugo.pro> Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Co-authored-by: Raul Santos <raulsntos@gmail.com> Co-authored-by: Mew Pur Pur <85438892+MewPurPur@users.noreply.github.com> Co-authored-by: Clay John <claynjohn@gmail.com>
* Fix various typos with codespellRémi Verschelde2023-09-121-4/+4
| | | | Using 2.2.6.dev180+ge3a2cfbd.
* Implement conversion from `CPUParticles` to `GPUParticles` (3D/2D)Yuri Roubinski2023-08-191-0/+96
|
* Unify and streamline connecting to Resource changeskobewi2023-07-171-3/+2
|
* Extract and reorganize texture resource classesHendrik Brucker2023-07-141-0/+1
|
* Add `finished` signal to GPUParticlesHolonProduction2023-07-121-6/+50
|
* Unify error condition for particles trail lifetimeclayjohn2023-07-101-1/+1
|
* Add warnings and fallbacks for particles sub emitters when using the GL ↵clayjohn2023-06-211-0/+5
| | | | | | Compatibility rendering backend Co-authored-by: Hugo Locurcio <hugo.locurcio@hugo.pro>
* Avoid error spam when (un)pausing GPUParticles out of treeYuri Sizov2023-06-121-4/+6
|
* Update GPUParticles2D/3D speed scale on ENTER_TREEBrian Long2023-03-271-0/+5
| | | | | | Fix for https://github.com/godotengine/godot/issues/75218 Pause notifications are not sent when a node is added as a child. So GPUParticles2D should also obey its can_process status on ENTER_TREE, not just PAUSED/UNPAUSED.
* Add warnings for unsupported features in mobile and gl_compatibility backendsclayjohn2023-02-261-0/+5
|
* Fixing Inspector Property UI for GPUParticle2D collision_base_size[Issue#71942]Kabiir2023-01-271-1/+1
|
* One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
| | | | | | | | | | | | | | | | | | | | 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".
* Add safety-checks before some servers `free()`Adam Scott2022-12-291-0/+1
|
* Remove single-element groups from GPUParticles2Dkobewi2022-12-121-4/+2
|
* Add GPUParticles to the OpenGL3 renderer.clayjohn2022-11-141-4/+0
| | | | | | | | This includes collision (2D SDF, Box, Sphere, Heightmap), attraction (Box, Sphere), and all sorting modes. This does not include 3D SDF collisions, trails, or manual emission.
* Rename GPUParticles2D/3D's `trail_length_secs` to `trail_lifetime`Hugo Locurcio2022-11-071-9/+9
| | | | | | | | | | | | The property already has a "seconds" suffix in the inspector. The "lifetime" term makes it more obvious that the property is specified as time, not a distance in units. The property hint now allows manually entering values greater than 10 seconds. The internal rendering value's default now matches the particles nodes' default.
* Fix MSVC warnings, rename shadowed variables, fix uninitialized values, ↵bruvzg2022-10-071-5/+5
| | | | change warnings=all to use /W4.
* Change return type of `get_configuration_warnings` to `PackedStringArray`Marc Gilleron2022-09-191-2/+2
|
* Fix build issue after #64377 and #64701Rémi Verschelde2022-08-301-1/+1
|
* Merge pull request #64377 from Mickeon/rename-canvas-redrawRémi Verschelde2022-08-301-7/+7
|\ | | | | Rename `CanvasItem.update()` to `queue_redraw()`
| * Rename `CanvasItem.update()` to `queue_redraw()`Micky2022-08-291-7/+7
| | | | | | | | | | | | | | | | | | | | Affects a lot of classes. Very thoroughly checked signal connections and deferred calls to this method, add_do_method/add_undo_method calls, and so on. Also renames the internal `_update_callback()` to `_redraw_callback()` for consistency. Just a few comments have also been changed to say "redraw". In CPUParticles2D, there was a private variable with the same name. It has been renamed to `do_redraw`.
* | Fix GPUParticles2D ignoring AtlasTexture regionHendrik Brucker2022-08-301-6/+32
|/
* Rename ParticlesMaterial to ParticleProcessMaterialMicky2022-08-261-8/+8
| | | | Also affects their file names, related classes and documentation.
* Make `_validate_property` a multilevel methodYuri Sizov2022-08-221-1/+1
|
* Use global coordinates for particles by defaultHugo Locurcio2022-08-021-1/+1
| | | | | | | | Particles won't move or rotate anymore with the node (or its parents) by default. This new default behavior is generally more suited to most use cases. Local coordinates can still be enabled on a per-node basis. This affects both 2D and 3D particles, and both CPU and GPU-based particles.
* Particles: Fix missing configuration warning updatesRémi Verschelde2022-07-031-2/+1
| | | | Fixes #33488.
* Add suffixes to all nodes and resourcesFireForge2022-06-111-2/+2
|
* Use suffixes for units in nodes and resourcesAaron Franke2022-05-191-4/+4
|
* Rename Basis get_axis to get_column, remove redundant methodsAaron Franke2022-05-031-4/+4
|
* Style: Partially apply clang-tidy's `cppcoreguidelines-pro-type-member-init`Rémi Verschelde2022-05-021-3/+0
| | | | | | | | | | | Didn't commit all the changes where it wants to initialize a struct with `{}`. Should be reviewed in a separate PR. Option `IgnoreArrays` enabled for now to be conservative, can be disabled to see if it proposes more useful changes. Also fixed manually a handful of other missing initializations / moved some from constructors.
* Added interpolation property to GPUParticles2DIgor Kordiukiewicz2022-04-041-0/+13
|
* String: Remove TTR and DTR defines in non-tools buildRémi Verschelde2022-03-281-3/+3
| | | | | This ensures we don't use TTR in runtime code, as it's specifically meant to source translations for the editor.