summaryrefslogtreecommitdiffstats
path: root/scene/2d/gpu_particles_2d.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* Use `switch` consistently in `_notification` (`scene` folder)Rémi Verschelde2022-02-151-131/+134
|
* ported particle sub-emission to 2Dfreeglebarr2022-01-241-0/+58
|
* Use List Initializations for Vectors.Anilforextra2022-01-121-20/+17
|
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Visibility rect only shown when a GPUParticle2D is selected to reduce visual ↵Raffaele Picca2021-11-281-1/+11
| | | | clutter in scenes with a lot of Particle nodes.
* Rename GLES2 driver to OpenGL to prepare for the upgrade to GLES3Hugo Locurcio2021-10-301-1/+1
| | | | | - Use lowercase driver names for the `--rendering-driver` command line argument.
* doctool: Fix differences between headless and Vulkan rendering backendsRémi Verschelde2021-10-201-0/+1
| | | | Fixes #53913.
* fix so the error macro uses the incomming parameter p_subdivision instead of ↵Manuel Dun2021-10-121-2/+2
| | | | the class member
* moved particle parameters to minmax and split scale axisQbieShay2021-08-221-1/+1
| | | | | | | This commit adds quite a chunk of modifications to particles - particle (value + randomness) now use min and max instead - passing a curveXYZtexture is now possible and will scale particles per-axis - CPUParticle3D have an optional parameter to split the scale curve per-axis
* Fix some unnecessary includesAaron Franke2021-08-131-2/+0
|
* Use real_t and double where appropriate in ParticlesAaron Franke2021-08-121-9/+9
|
* Some work on double supportAaron Franke2021-08-091-2/+2
|
* Use doubles for time in many other placesAaron Franke2021-08-091-11/+14
|
* Fix editor suffixes and degrees conversionreduz2021-06-301-1/+1
| | | | | | | | | | | | | * Functions to convert to/from degrees are all gone. Conversion is done by the editor. * Use PROPERTY_HINT_ANGLE instead of PROPERTY_HINT_RANGE to edit radian angles in degrees. * Added possibility to add suffixes to range properties, use "min,max[,step][,suffix:<something>]" example "0,100,1,suffix:m" * In general, can add suffixes for EditorSpinSlider Not covered by this PR, will have to be addressed by future ones: * Ability to switch radians/degrees in the inspector for angle properties (if actually wanted). * Animations previously made will most likely break, need to add a way to make old ones compatible. * Only added a "px" suffix to 2D position and a "m" one to 3D position, someone needs to go through the rest of the engine and add all remaining suffixes. * Likely also need to track down usage of EditorSpinSlider outside properties to add suffixes to it too.
* Rename `is_a_parent_of()` to `is_ancestor_of()`Lightning_A2021-06-211-1/+1
|
* Rename Transform to Transform3D in coreAaron Franke2021-06-031-4/+4
|
* Support for 2D particles to collide against SDFreduz2021-05-231-2/+204
| | | | | -Added SDF collision support for 2D particles -Changed the SDF generation to be fully signed
* Fixes missng 2D engine bitsreduz2021-05-111-0/+1
| | | | | | | | | | -Mesh2D now works -MultiMesh2D now works -Polygon2D now works -Added hooks for processing 2D particles -Skeleton2D now works 2D particles still not working, but stuff needed for it is now implemented.
* Use Array for node configuration warningsNathan Franke2021-04-111-13/+7
| | | | Previously, the warnings were passed as a string and delimitation of which were hard coded at each implementation.
* Removed _change_notifyreduz2021-02-101-2/+1
| | | | | | -For inspector refresh, the inspector now detects if a property change by polling a few times per second and then does update the control if so. This process is very cheap. -For property list refresh, a new signal (property_list_changed) was added to Object. _change_notify() is replaced by notify_property_list_changed() -Changed all objects using the old method to the signal, or just deleted the calls to _change_notify(<property>) since they are unnecesary now.
* Update copyright statements to 2021Rémi Verschelde2021-01-011-2/+2
| | | | | | | | | | | | | | Happy new year to the wonderful Godot community! 2020 has been a tough year for most of us personally, but a good year for Godot development nonetheless with a huge amount of work done towards Godot 4.0 and great improvements backported to the long-lived 3.2 branch. We've had close to 400 contributors to engine code this year, authoring near 7,000 commit! (And that's only for the `master` branch and for the engine code, there's a lot more when counting docs, demos and other first-party repos.) Here's to a great year 2021 for all Godot users 🎆
* Rename Particles/ParticlesMaterial "Flags" enum to "ParticleFlags"Aaron Franke2020-12-041-2/+2
| | | "Flags" was a bit too ambiguous, and in 3D it hid GeometryInstance.Flags
* Reorganized core/ directory, it was too fatty alreadyreduz2020-11-071-1/+1
| | | | | | -Removed FuncRef, since Callable makes it obsolete -Removed int_types.h as its obsolete in c++11+ -Changed color names code
* Refactored 2D shader and lighting systemreduz2020-10-241-18/+1
| | | | | | | | | | -Removed normal/specular properties from nodes -Create CanvasTexture, which can contain normal/specular channels -Refactored, optimized and simplified 2D shaders -Use atlas for light textures. -Use a shadow atlas for shadow textures. -Use both items aboves to make light rendering stateless (faster). -Reorganized uniform sets for more efficiency.
* Update all get_configuration_warning to retrieve warnings from the parentArrowInAKnee2020-05-161-1/+1
|
* Style: Enforce braces around if blocks and loopsRémi Verschelde2020-05-141-7/+14
| | | | | Using clang-tidy's `readability-braces-around-statements`. https://clang.llvm.org/extra/clang-tidy/checks/readability-braces-around-statements.html
* Style: Enforce separation line between function definitionsRémi Verschelde2020-05-141-0/+14
| | | | | | | | | | | | | | | | | | | | | | | I couldn't find a tool that enforces it, so I went the manual route: ``` find -name "thirdparty" -prune \ -o -name "*.cpp" -o -name "*.h" -o -name "*.m" -o -name "*.mm" \ -o -name "*.glsl" > files perl -0777 -pi -e 's/\n}\n([^#])/\n}\n\n\1/g' $(cat files) misc/scripts/fix_style.sh -c ``` This adds a newline after all `}` on the first column, unless they are followed by `#` (typically `#endif`). This leads to having lots of places with two lines between function/class definitions, but clang-format then fixes it as we enforce max one line of separation. This doesn't fix potential occurrences of function definitions which are indented (e.g. for a helper class defined in a .cpp), but it's better than nothing. Also can't be made to run easily on CI/hooks so we'll have to be careful with new code. Part of #33027.
* Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocksRémi Verschelde2020-05-141-38/+0
| | | | | | | | | | | | | | Which means that reduz' beloved style which we all became used to will now be changed automatically to remove the first empty line. This makes us lean closer to 1TBS (the one true brace style) instead of hybridating it with some Allman-inspired spacing. There's still the case of braces around single-statement blocks that needs to be addressed (but clang-format can't help with that, but clang-tidy may if we agree about it). Part of #33027.
* doc: Update classref with node renamesRémi Verschelde2020-03-301-1/+1
| | | | A few extra renames for classes which were missed in last week's PRs.
* Renaming of servers for coherency.Juan Linietsky2020-03-271-26/+26
| | | | | | | | | | VisualServer -> RenderingServer PhysicsServer -> PhysicsServer3D Physics2DServer -> PhysicsServer2D NavigationServer -> NavigationServer3D Navigation2DServer -> NavigationServer2D Also renamed corresponding files.
* Rename more 2D and 3D nodes to follow conventionRémi Verschelde2020-03-271-0/+432
Rename editor plugins to match the new node names.