Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-07-02 | Fix various memory leaks and errors | Bojidar Marinov | |
2019-06-27 | Merge pull request #29937 from clayjohn/particles-one-shot-bug | Rémi Verschelde | |
Update emitting status on one-shot particles | |||
2019-06-25 | update emitting status on one-shot particles | clayjohn | |
2019-06-21 | properly set emitting when particles restart | clayjohn | |
2019-02-09 | Warn when using GPU particles with GLES2 | Rémi Verschelde | |
Closes #25733. | |||
2019-01-01 | Update copyright statements to 2019 | Rémi Verschelde | |
Happy new year to the wonderful Godot community! | |||
2018-11-13 | Make 2D particles work OOTB (again) | JFonS | |
2018-11-04 | Remove animation loop from ParticlesMaterial + improvements to CPUParticles2D | JFonS | |
Remove animation loop from ParticlesMaterial and move it to SpatialMaterial for 3D particles and Particles2D for the 2D case. Added animation to CPUParticles2D as well as the "Convert to CPUParticles2D" to the PAarticles2D menu. | |||
2018-09-04 | Move ParticlesMaterial code to its own resource file | Rémi Verschelde | |
It's shared by both 2D and 3D particles (+ CPU ones), so it makes sense to have as a common resource. It also allowed to disable compilation of Particles (3D) when using 'disable_3d'. Also cleaned up includes in SpatialEditorGizmos and some other places, as well as dropped dead code in material_editor_plugin.cpp. | |||
2018-08-24 | Particles: Allow speed_scale at 0 in property hint, equivalent to pause | Rémi Verschelde | |
Supersedes and closes #21193. | |||
2018-08-17 | Particles2D: fix editing Visibility Rect from inspector | Natrim | |
+ renamed generate_aabb to generate_visibility_rect to prevent future confusions | |||
2018-05-16 | Allow editing of some unbound properties when hinted (or no range hinted) | Juan Linietsky | |
2018-01-05 | Add missing copyright headers and fix formatting | Rémi Verschelde | |
Using `misc/scripts/fix_headers.py` on all Godot files. Some missing header guards were added, and the header inclusion order was fixed in the Bullet module. | |||
2018-01-01 | Update copyright statements to 2018 | Rémi Verschelde | |
Happy new year to the wonderful Godot community! | |||
2017-12-23 | Set particles emitting to false when particles finish emitting with one-shot ↵ | MrCdK | |
enabled | |||
2017-12-06 | Particles2D: Fix normal map rid. | Andreas Haas | |
Looks like a Copy & Paste error, fixes #14334. | |||
2017-11-17 | Rename Rect3 to AABB. | Ferenc Arn | |
Fixes #12973. | |||
2017-08-27 | Use HTTPS URL for Godot's website in the headers | Rémi Verschelde | |
2017-08-21 | Merge pull request #10351 from neikeq/enums-are-for-the-weak | Juan Linietsky | |
ClassDB: Provide the enum name of integer constants | |||
2017-08-20 | ClassDB: Provide the enum name of integer constants | Ignacio Etcheverry | |
2017-08-20 | Merge pull request #10319 from neikeq/pr-engine-editor-hint | Juan Linietsky | |
Adds Engine::is_editor_hint() method | |||
2017-08-19 | Removes editor_hint from SceneTree | Ignacio Etcheverry | |
2017-08-12 | Disabling Particles::one_shot restarts emission | Zher Huei Lee | |
Fixes #10181 | |||
2017-08-10 | Removes type information from method binds | Ignacio Etcheverry | |
2017-08-07 | Ability to pause particles, closes #3675 | Juan Linietsky | |
2017-08-05 | Initialize Particles2D draw order property | L. Krause | |
2017-06-25 | Usability improvements for folding. Unfortunately SpatialMaterial broke ↵ | Juan Linietsky | |
compatibility. | |||
2017-06-25 | Ability to restart particle system with a function call | Juan Linietsky | |
2017-06-22 | Properly exposed material types everywhere. | Juan Linietsky | |
2017-06-22 | Fix tools=no build | Rémi Verschelde | |
This house is falling apart when I'm not around... | |||
2017-06-21 | 2D GPU Particles working.. | Juan Linietsky | |
2017-06-14 | renamed occurances of ColorRamp with Gradient | Karroffel | |
ColorRamp got renamed to Gradient recently, reduz missed some occurances though. | |||
2017-06-04 | renamed all Rect2.pos to Rect2.position | alexholly | |
2017-05-28 | -Added .hdr format support | Juan Linietsky | |
-Added default environment editor setting -Added environment created by default in new projects -Removed default light and ambient from spatial editor, to make the editor more PBR compliant | |||
2017-04-09 | Merge pull request #8321 from RandomShaper/zero-preprocess-particles2d | Rémi Verschelde | |
Allow zero preprocess time for Particles2D | |||
2017-04-09 | Particles2D: Fix flip property (again). | Andreas Haas | |
should have flipped the dst_rect.. | |||
2017-04-08 | Allow zero preprocess time for Particles2D | Pedro J. Estébanez | |
2017-04-08 | Add "Godot Engine contributors" copyright line | Rémi Verschelde | |
2017-03-05 | A Whole New World (clang-format edition) | Rémi Verschelde | |
I can show you the code Pretty, with proper whitespace Tell me, coder, now when did You last write readable code? I can open your eyes Make you see your bad indent Force you to respect the style The core devs agreed upon A whole new world A new fantastic code format A de facto standard With some sugar Enforced with clang-format A whole new world A dazzling style we all dreamed of And when we read it through It's crystal clear That now we're in a whole new world of code | |||
2017-02-28 | Various fixes detected using PVS-Studio static analyzer. | Thaer Razeq | |
- Add FIXME tags comments to some unfixed potential bugs - Remove some checks (always false: unsigned never < 0) - Fix some if statements based on reviews. - Bunch of missing `else` statements | |||
2017-02-27 | Use the common PRNG in 2D particles code. | Ferenc Arn | |
Replaces the custom PRNG used by 2D particles code with a wrapper for the PRNG located under core/math. | |||
2017-02-27 | Merge pull request #7897 from RandomShaper/particles2d-process-mode | Rémi Verschelde | |
Add process mode option to Particles2D | |||
2017-02-27 | Add process mode option to Particles2D | Pedro J. Estébanez | |
2017-02-25 | Add emission_finished signal to Particles2D | Bojidar Marinov | |
(Also remove some Particles2D::testee method, which was unused) Resolves #3963 | |||
2017-02-13 | Rename the _MD macro to D_METHOD | Hein-Pieter van Braam | |
This new name also makes its purpose a little clearer This is a step towards fixing #56 | |||
2017-02-13 | Remove use of _SCS from ADD_METHOD | Hein-Pieter van Braam | |
This saves typing and is a step towards fixing #56 | |||
2017-02-10 | Particles2D: implement texture flip parameters. | Andreas Haas | |
2017-01-16 | Overloaded basic math funcs (double and float variants). Use real_t rather ↵ | Ferenc Arn | |
than float or double in generic functions (core/math) whenever possible. Also inlined some more math functions. | |||
2017-01-12 | Renamed most signals so they refer to: | Juan Linietsky | |
-An action being requested to the user in present tense: (ie, draw, gui_input, etc) -A notification that an action happened, in past tense (ie, area_entered, modal_closed, etc). | |||
2017-01-11 | Type renames: | Juan Linietsky | |
Matrix32 -> Transform2D Matrix3 -> Basis AABB -> Rect3 RawArray -> PoolByteArray IntArray -> PoolIntArray FloatArray -> PoolFloatArray Vector2Array -> PoolVector2Array Vector3Array -> PoolVector3Array ColorArray -> PoolColorArray |