| Commit message (Collapse) | Author | Age | Files | Lines |
|\ |
|
| | |
|
| | |
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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>
|
|
|
|
| |
Using `is_valid/null` over checks with `nullptr` or `ERR_FAIL_NULL` etc.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Fix some translations
Revert "Fix some translations"
This reverts commit 61e586ef84fb962eefdc14593241c1d8b0fb7b6b.
Revert "Fix Issue #94145 Incorrect text in the Node Configuration Warning dialog"
This reverts commit d0832dc5e7f0657744780cdfc97ed40772ea717c.
msgid
warnings.push_back(RTR("A SpriteFrames resource must be created or set in the \"Sprite Frames\"
revert editor/translations/editor
|
| |
|
|
|
|
| |
On playing a different animation to the current backwards will start the new animation on the last animations last frame not the new ones
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
Random-access access to `List` when iterating is `O(n^2)` (`O(n)` when
accessing a single element)
* Removed subscript operator, in favor of a more explicit `get`
* Added conversion from `Iterator` to `ConstIterator`
* Remade existing operations into other solutions when applicable
|
| |
|
|
|
|
| |
This reverts commit d3852deaa450d77edb30df2bb1c77bd7bc45befc.
|
|
|
|
| |
Co-authored-by: Danni <34800072+KeyboardDanni@users.noreply.github.com>
|
| |
|
|\
| |
| |
| | |
Add autocompletion options for AnimatedSprite's other play methods
|
| | |
|
|/ |
|
| |
|
| |
|
|
|
|
|
| |
Changing of autoplay when changing `SpriteFrames` is not done by the
user and warning is unhelpful
|
| |
|
| |
|
|\
| |
| |
| | |
`AnimatedSprite{2D,3D}` improvements
|
| |
| |
| |
| |
| | |
* Add support for individual frame duration to `SpriteFrames`.
* Various minor improvements.
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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".
|
| |
|
| |
|
|\
| |
| |
| | |
Allow negative `speed_scale` in AnimatedSprite2D & 3D
|
| |
| |
| |
| |
| |
| |
| | |
If the `speed_scale` is set to a negative value, the animation plays in reverse.
The second parameter of `play()` still reverses as before. if `speed_scale` and the second parameter of `play()` is true, the animation plays forward.
Also updates the documentation to better describe the pausing and playing behaviour.
|
|/ |
|
|
|
|
|
|
|
|
| |
Add the following properties to AnimatedSprite3D:
- `backwards` parameter in `play()`;
- `speed_scale`.
Both classes' internals are more similar, down to the line spacings. They've also been updated to be clearer and less inconsistent (e.g. `!frames.is_valid()` -> `frames.is_null()`, use SceneStringNames instead of CoreStringNames, rename the internal _queue_update to _queue_redraw)
|
|
|
|
|
|
|
|
|
|
| |
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`.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
direction
|
| |
|
|
|
|
|
| |
This ensures we don't use TTR in runtime code, as it's specifically meant
to source translations for the editor.
|
| |
|
| |
|
|
|
|
|
|
| |
Use clear() instead of resize(0).
Use has() instead of "find(p_val) != -1".
|
|
|
|
| |
Happy new year to the wonderful Godot community!
|
|\ |
|
| | |
|
| |
| |
| |
| |
| |
| | |
Also:
- Adds two stress tests to test_string.h
- Changes to .empty() on std::strings
|
| | |
|
| | |
|
| | |
|