summaryrefslogtreecommitdiffstats
path: root/scene/animation/animation_player.h
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@f128f383e892865379cb8b14e7bcc9858efe2973Spartan3222024-11-271-0/+12
|\
| * Make start/end can be retrieved from each PlaybackData on AnimPlayerSilc Lizard (Tokage) Renew2024-11-231-0/+12
| |
* | Merge commit godotengine/godot@6c05ec3d6732cac44cf85c91db7d3fd1075bcb23Spartan3222024-11-151-0/+4
|\|
| * Add back `AnimationPlayer.get_argument_options`HolonProduction2024-11-151-0/+4
| |
* | Merge pull request #818 from Spartan322/fixup/copyright-headersGeorge L. Albany2024-10-271-2/+2
|\ \ | | | | | | Fix copyright headers referring to Godot
| * | Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
| | |
* | | Merge commit godotengine/godot@61accf060515416da07d913580419fd8c8490f7bSpartan3222024-10-261-2/+2
|\ \ \ | |/ / |/| / | |/
| * Implement array based hash mapnazarii2024-10-241-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>
* Add markers to animationchocola-mint2024-09-291-3/+13
|
* Handle internal seek on AnimationPlayer to process discrete correctlySilc Lizard (Tokage) Renew2024-07-161-1/+3
|
* fix the sorting of blend_times in animation playerJacob Millner2024-07-031-2/+2
| | | | | Modify BlendKey's sort to use AlphaCompare in order to create a deterministic sort Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com>
* Add argument options to AnimationPlayer for auto captureSilc Lizard (Tokage) Renew2024-05-031-0/+11
|
* Add auto_capture option to AnimationPlayerSilc Lizard (Tokage) Renew2024-05-021-1/+7
|
* Optimise Object's `get_argument_options`Micky2024-02-291-0/+2
|
* Fix some DEFVALs to use the right typeRaul Santos2024-02-231-0/+2
| | | | | - Use `StringName()` in DEFVAL for StringNames. - Use `Variant()` in DEFVAL for Variants.
* Add capture() and play_with_capture() as substitute of update captureSilc Lizard (Tokage) Renew2024-02-121-0/+2
|
* Make default blend_left consider current blend amountSilc Lizard (Tokage) Renew2024-01-091-0/+2
|
* Check the seek process immediately after playback as a special caseSilc Lizard (Tokage) Renew2023-11-261-0/+1
|
* Clear seeked/started flag after seeking/advancing in AnimationPlayerSilc Lizard (Tokage) Renew2023-11-221-0/+2
|
* Implement AnimationManager the base class of AnimationPlayer/TreeSilc Lizard (Tokage) Renew2023-09-291-297/+53
|
* Fix AnimatedSprite play() don't redraw immediatelySilc Renew2023-01-291-1/+1
|
* Implement blending audio feature to AnimationTreeSilc Renew2023-01-281-0/+29
|
* Make AnimTree/Player processes adopt to GDVIRTUALSilc Renew2023-01-261-0/+2
|
* Add p_keep_state to AnimationPlayer::stop()Silc Renew2023-01-191-2/+2
|
* Reset animation on playback stopTomasz Chabora2023-01-131-1/+2
|
* Split pause() from AnimationPlayer's stop()kobewi2023-01-111-1/+3
|
* 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".
* Change init for cache_update_size & add pointer animation playerSilc Renew2022-12-071-1/+0
|
* Fix AnimationPlayer method track call oneself with IMMEDIATE modeSilc Renew2022-12-071-0/+1
|
* Merge pull request #61958 from jtnicholl/animation_connectionsRémi Verschelde2022-12-021-3/+1
|\ | | | | | | Add `animation_changed` signal to `AnimationLibrary`, have `AnimationPlayer` connect to it instead of `Animation`'s `changed`
| * Add animation_changed signal to AnimationLibraryJonathan Nicholl2022-11-211-3/+1
| | | | | | | | | | | | | | | | AnimationLibrary now listens for the animation_changed signal on its animations and emits this new signal, with the animation name added on. AnimationPlayer now connects to this signal rather than connecting to each individual animation, which was poor practice due to bypassing encapsulation.
* | Refactor process of animation to retrive keys more exactlySilc Renew2022-12-011-1/+1
|/
* Change time parameters and variables to double typeDave Palais2022-09-261-14/+14
| | | | Addresses #65313
* Make `_validate_property` a multilevel methodYuri Sizov2022-08-221-1/+1
|
* Add a Movie Quit On Finish property to AnimationPlayerHugo Locurcio2022-07-271-0/+4
| | | | | | | | | | | | | | | | | | This quits the project when an animation is done playing in the given AnimationPlayer, but only in Movie Maker mode. When this happens, a message is printed with the absolute path of the AnimationPlayer node that caused the engine to quit. This can be used to create videos that stop at a specified time without having to write any script. A report is now also printed to the console when the video is done recording (as long as the engine was exited properly). This report is unfortunately not always visible in the editor's Output panel, as it's printed too late. A method was also added to get the path to the output file from the scripting API.
* add position track normalization & post process key value for retargetSilc Renew2022-07-261-0/+2
|
* Fix initial value of TRS3DTrack cache in AnimationPlayerSilc Renew2022-07-261-0/+3
|
* Code quality: Fix header guards consistencyRémi Verschelde2022-07-251-1/+1
| | | | | Adds `header_guards.sh` bash script, used in CI to validate future changes. Can be run locally to fix invalid header guards.
* Clean up Hash Functionsreduz2022-06-201-2/+2
| | | | | | | Clean up and do fixes to hash functions and newly introduced murmur3 hashes in #61934 * Clean up usage of murmur3 * Fixed usages of binary murmur3 on floats (this is invalid) * Changed DJB2 to use xor (which seems to be better)
* Remove configuration warning from AnimationPlayerSnailRhymer2022-05-241-2/+0
| | | | | | Remove warning about animations in different libraries having the same name, since shared names are fine. Also fix missing vformat argument when setting the name of an animation to one that does conflict with an animation in the same library.
* Add a new HashSet templatereduz2022-05-201-1/+1
| | | | | * Intended to replace RBSet in most cases. * Optimized for iteration speed
* Replace most uses of Map by HashMapreduz2022-05-161-7/+29
| | | | | | | | | | | | * Map is unnecessary and inefficient in almost every case. * Replaced by the new HashMap. * Renamed Map to RBMap and Set to RBSet for cases that still make sense (order matters) but use is discouraged. There were very few cases where replacing by HashMap was undesired because keeping the key order was intended. I tried to keep those (as RBMap) as much as possible, but might have missed some. Review appreciated!
* Remove `RES` and `REF` typedefs in favor of spelled out `Ref<>`Hugo Locurcio2022-05-031-1/+1
| | | | | | These typedefs don't save much typing compared to the full `Ref<Resource>` and `Ref<RefCounted>`, yet they sometimes introduce confusion among new contributors.
* Implement Animation Librariesreduz2022-04-111-4/+32
| | | | | | | | | | | | * Instead of containing single animations, AnimationPlayer now contains libraries. * Libraries, in turn, contain the animations. This paves the way for implementing the possibility of importing scenes as animation libraries, finally allowing to import animations separate from the 3D models. Missing (will be done on separate PRs): * Make it possible to import scenes (dae/fbx/gltf) as animation libraries. * Make it possible for AnimationTree to import animation libraries on its own, so it does not rely on AnimationPlayer for everything.
* Object: Remove unused category boilerplateRémi Verschelde2022-03-261-1/+0
| | | | | | | | | We might want to re-add something like this if/when we find a good use case for it and do the effort to categorize all objects in the API properly. Until then, it's better to remove that boilerplate since it's not needed. Closes #18711.
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Fixed PlaybackData in AnimationPlayerSilc 'Tokage' Renew2021-11-271-1/+1
|
* reimplement ping-pongSilc 'Tokage' Renew2021-11-031-1/+1
|
* Remove unimplemented methodsMarcel Admiraal2021-10-211-1/+0
|