summaryrefslogtreecommitdiffstats
path: root/scene/animation/animation_blend_tree.h
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@d09d82d433b03bb3773fd2a8cc8d6ccc2f8739ceSpartan3222024-11-261-0/+7
|\
| * Add explicit_elapse option to NodeSeek to handle some processesSilc Lizard (Tokage) Renew2024-11-201-0/+7
| |
* | Merge commit godotengine/godot@6c05ec3d6732cac44cf85c91db7d3fd1075bcb23Spartan3222024-11-151-0/+5
|\|
| * Add advance_on_start option to NodeAnimationSilc Lizard (Tokage) Renew2024-11-121-0/+5
| |
* | 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>
* Remove empty bind_methods()kobewi2024-08-151-21/+0
|
* Rework AnimationNode process for retrieving the semantic time infoSilc Lizard (Tokage) Renew2024-03-201-16/+45
|
* Optimise Object's `get_argument_options`Micky2024-02-291-0/+2
|
* Add Autocompletion for AnimationNodeStateMachine & BlendTreeMicky2024-01-061-0/+2
|
* Implement AnimationManager the base class of AnimationPlayer/TreeSilc Lizard (Tokage) Renew2023-09-291-12/+12
|
* Make AnimationNodeBlendTree use RBMap insteads HashMapSilc Lizard (Tokage) Renew2023-07-181-1/+1
|
* Implement NodeSub2 to AnimationTree & improve mathematical NodesSilc Lizard (Tokage) Renew2023-05-271-0/+20
|
* Fix NodeOneShot doesn't respect fade-out when aborting and improvementSilc Lizard (Tokage) Renew2023-05-151-13/+24
|
* Rework StateMachine and nested StateMachine processSilc Renew2023-04-181-12/+12
| | | | Breaking compatibility: If a StateMachineTransition is connected to a nested StateMachine prior to this, it is removed. Also, there was a feature to connect another StateMachine as the End of a StateMachine, which is also removed to avoid reference confusion. It was like a GoTo Statement, also further passing the same reference to the blending process, causing the blending calculation to break or causing some StateMachines to not work.
* Fix NodeTransition initialization and AnimationNode remapping methodSilc Renew2023-02-051-1/+7
|
* Consistent with NodeTimeSeek parameters OtherNodesSilc Renew2023-02-011-1/+1
|
* Make restart in NodeStateMachine / NodeTransition optionalSilc Renew2023-02-011-0/+4
|
* Allow the Reset option of NodeTransition to be set for each InputSilc Renew2023-01-311-5/+8
|
* Remove the max input limit & cleanup AnimationNodeTransition APISilc Renew2023-01-301-19/+8
|
* Allow AnimationNodes to restart when transitioning to the same stateSilc Renew2023-01-191-17/+19
|
* Add next/reset function to AnimationStateMachineSilc Renew2023-01-191-3/+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".
* Refactor process of AnimationTree for end of animationSilc Renew2022-11-221-12/+12
|
* Change time parameters and variables to double typeDave Palais2022-09-261-19/+19
| | | | Addresses #65313
* Merge pull request #63802 from TokageItLab/curve-transitionRémi Verschelde2022-08-221-3/+7
|\
| * added Curve in animation node transition for better control over cros…Silc Renew2022-08-181-3/+7
| | | | | | | | Co-authored-by: jeronimo-schreyer <jeronimo.schreyer@gmail.com>
* | Make `_validate_property` a multilevel methodYuri Sizov2022-08-221-2/+2
|/
* refactor sync in AnimationTreeSilc Renew2022-07-161-33/+31
|
* Add dedicated macros for property name extractionHaoyu Qiu2022-05-191-8/+8
| | | | | | | * Replace case-by-case extraction with PNAME & GNAME * Fix group handling when group hint begins with property name * Exclude properties that are PROPERTY_USAGE_NO_EDITOR * Extract missing ADD_ARRAY*, ADD_SUBGROUP* macros
* Merge pull request #60774 from TokageItLab/root-seek-modeRémi Verschelde2022-05-181-13/+13
|\ | | | | Fixed broken root motion calculation in internal process of `AnimationBlendTree` such as `NodeOneShot`
| * Fixed delta & Implement selection of whether or not to seek rootSilc Renew2022-05-091-13/+13
| |
* | Replace most uses of Map by HashMapreduz2022-05-161-1/+1
|/ | | | | | | | | | | | * 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!
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* reimplement ping-pongSilc 'Tokage' Renew2021-11-031-5/+21
|
* Revert "Implement reverse playback and ping-pong loop in AnimationPlayer and ↵Juan Linietsky2021-10-111-21/+5
| | | | NodeAnimation"
* implement ping-pong loop in animationTokage2021-10-091-5/+21
| | | | Co-authored-by: Chaosus <chaosus89@gmail.com>
* Fix AnimationBlendTree reset on resource loadingPouleyKetchoupp2021-08-261-0/+2
| | | | | | | | When reset_state was called on an existing AnimationBlendTree, the output node would disappear, causing some errors in the editor and preventing animations to play properly. This change ensures the output node is always present in the node tree.
* Use doubles for time in animation codeAaron Franke2021-08-091-11/+11
|
* Improve resource load cachereduz2021-02-111-0/+2
| | | | | | -Added a new method in Resource: reset_state , used for reloading the same resource from disk -Added a new cache mode "replace" in ResourceLoader, which reuses existing loaded sub-resources but resets their data from disk (or replaces them if they chaged type) -Because the correct sub-resource paths are always loaded now, this fixes bugs with subresource folding or subresource ordering when saving.
* Initialize class variables with default values in scene/ [1/2]Rafał Mikrut2021-02-071-33/+32
|
* 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 🎆
* Add override keywords.Marcel Admiraal2020-07-101-47/+47
|
* Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocksRémi Verschelde2020-05-141-2/+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.
* Update copyright statements to 2020Rémi Verschelde2020-01-011-2/+2
| | | | | | | | | | | Happy new year to the wonderful Godot community! We're starting a new decade with a well-established, non-profit, free and open source game engine, and tons of further improvements in the pipeline from hundreds of contributors. Godot will keep getting better, and we're looking forward to all the games that the community will keep developing and releasing with it.
* Made use of semicolons more consitent, fixed formattingJohnJLight2019-06-191-2/+3
|
* Implement missing autorestart in oneshot node, closes #22238Juan Linietsky2019-01-251-0/+1
|
* Update copyright statements to 2019Rémi Verschelde2019-01-011-2/+2
| | | | Happy new year to the wonderful Godot community!
* Proper time tracking in AnimationNodeAnimation, closes #22887Juan Linietsky2018-11-081-4/+3
|
* Add missing copyright headersRémi Verschelde2018-08-291-0/+30
|