summaryrefslogtreecommitdiffstats
path: root/scene/3d/skeleton_ik_3d.cpp
Commit message (Collapse)AuthorAgeFilesLines
* 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>
* Fixed Timestep Interpolation (3D)Ricardo Buring2024-07-071-1/+5
| | | | | | | Adds 3D fixed timestep interpolation to the rendering server. This does not yet include support for multimeshes or particles. Co-authored-by: lawnjelly <lawnjelly@gmail.com>
* Add get_concatenated_bone_names() to Skeleton3D for Modifier's hintSilc Lizard (Tokage) Renew2024-06-101-9/+1
|
* Add SkeletonIK3D get/set_interpolation compat from #87888Lyuma2024-04-181-0/+16
|
* Skeleton3D: Add SkeletonModifier / Deprecate Override / Separate PBSilc Lizard (Tokage) Renew2024-04-051-78/+30
|
* Make SkeletonIk3D node usablewarriormaster122023-09-281-1/+1
|
* Merge pull request #77465 from lyuma/ik_skeleton_reference_bugRémi Verschelde2023-06-201-6/+14
|\ | | | | | | SkeletonIK3D: Avoid holding hard pointers to Skeleton3D
| * SkeletonIK3D: Avoid holding hard pointers to Skeleton3DLyuma2023-05-251-6/+14
| |
* | Fix for SkeletonIK3D interpolation and bone rollLyuma2023-06-051-21/+1
|/ | | | | Fix bug in internal Basis::rotate_to_align function (also used with identity Basis in scene/resources/curve.cpp) Use ChainItem children rather than local bone rest to determine IK bone roll to match Godot 3.x behavior
* Remove SkeletonModificationStack3D, and Skeleton3D api cleanupLyuma2023-01-121-2/+21
| | | | | | | | | Removes all 3D modification resources. SkeletonIK3D is a node and still supported. Remove deprecated Skeleton3D functionality for 4.0, so we can add it back in 4.x. Remove local_pose_override feature from Skeleton3D and BoneAttachment3D. Expose Skeleton3D::get_version() so IK scripts/extensions can cache bones. Note: This change only affects 3D. SkeletonModification2D will work as before.
* 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".
* Make `_validate_property` a multilevel methodYuri Sizov2022-08-221-8/+6
|
* Add suffixes to all nodes and resourcesFireForge2022-06-111-1/+1
|
* Use suffixes for units in nodes and resourcesAaron Franke2022-05-191-2/+2
|
* Fix cppcheck const parametersMarkus Sauermann2022-04-281-1/+1
| | | | | | | | | | Convert method signature parameters to const where it is possible # Conflicts: # drivers/gles3/rasterizer_canvas_gles3.cpp # drivers/gles3/rasterizer_canvas_gles3.h # editor/plugins/animation_state_machine_editor.cpp # editor/plugins/animation_state_machine_editor.h
* Use `switch` consistently in `_notification` (`scene` folder)Rémi Verschelde2022-02-151-2/+2
|
* Style: Remove inconsistently used `@author` docstringsRémi Verschelde2022-01-041-4/+0
| | | | | | | | | | Each file in Godot has had multiple contributors who co-authored it over the years, and the information of who was the original person to create that file is not very relevant, especially when used so inconsistently. `git blame` is a much better way to know who initially authored or later modified a given chunk of code, and most IDEs now have good integration to show this information.
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Refactored Node3D rotation modesreduz2021-10-251-0/+2
| | | | | | | | | * Made the Basis euler orders indexed via enum. * Node3D has a new rotation_order property to choose Euler rotation order. * Node3D has also a rotation_mode property to choose between Euler, Quaternion and Basis Exposing these modes as well as the order makes Godot a lot friendlier for animators, which can choose the best way to interpolate rotations. The new *Basis* mode makes the (exposed) transform property obsolete, so it was removed (can still be accessed by code of course).
* Fixed SkeletonIK not rotating correctly when solvingTwistedTwigleg2021-10-041-8/+4
|
* Use functions defined in the their classes.Anilforextra2021-09-291-2/+2
|
* Make sure IK target is inside tree before using its transformHaoyu Qiu2021-09-141-1/+1
|
* Use real_t in 3D nodesAaron Franke2021-08-031-1/+1
|
* Rename Variant TRANSFORM to TRANSFORM3DAaron Franke2021-06-031-1/+1
| | | Also _transform to _transform3d
* Rename Transform to Transform3D in coreAaron Franke2021-06-031-9/+9
|
* SkeletonIK: Fixed issue where bones become detached if multiple SkeletonIK ↵TwistedTwigleg2021-05-251-6/+9
| | | | | | nodes are used (Forward port of 3.X code for Godot 4)
* Fixes the SkeletonIK twisting issue by using the skeleton global pose ↵TwistedTwigleg2021-05-081-53/+16
| | | | without overrides
* Changed SkeletonIK3D to clear bone overrides when stoppingTwistedTwigleg2021-04-151-1/+3
|
* Fix for SkeletonIK not working correctly with 0 interpolation and ↵TwistedTwigleg2021-04-021-16/+69
| | | | incorrectly rotating with animation. Now the root bone rotates differently to ensure it always rotates correctly and works with BoneAttachment3D nodes.
* Fix for regression in SkeletonIK codeTwistedTwigleg2021-03-181-0/+4
|
* Fixes small typos and grammar correctionAnshul7sp12021-03-121-1/+1
|
* Merge pull request #40774 from TwistedTwigleg/SkeletonIK_Godot_4_0_FixesRémi Verschelde2021-03-121-21/+7
|\ | | | | SkeletonIK changes and bug fixes
| * Changes to SkeletonIK:TwistedTwigleg2020-09-081-21/+7
| | | | | | | | | | | | | | | | | | | | * Removed the pointers to PhysicalBone in the code, as they were unused. * Forward ported the SkeletonIK bone scaling fix I made from Godot 3.2 to Godot 4.0. * Fixed issue where the root bone in the IK chain would not rotate correctly. * The issue turned out to be the update_chain function being called in solve. This would override the root bone transform incorrectly and that would cause it not to rotate after just a single solve. Removing the update_chain function fixes the issue and based on my testing there are no adverse effects. * While the old fix on this PR (prior to a force push) required a hack fix, this new fix does not! * Removed the update_chain function. This change doesn't appear to have any adverse effects in any of the projects I tested (including with animations, Skeleton3D or otherwise, from AnimationPlayer nodes!) * Fixed issue where the scale of the Skeleton node would change the position of the target, causing it not to work with skeletons that have a global scale of anything but 1.
* | 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 empty() to is_empty()Marcel Admiraal2020-12-281-3/+3
| |
* | Fixed reload_goal not being called when SkeletonIK3D::start is invoked with ↵ConorLPBoyle2020-07-271-0/+5
|/ | | | p_one_time = true
* Style: Enforce braces around if blocks and loopsRémi Verschelde2020-05-141-15/+27
| | | | | Using clang-tidy's `readability-braces-around-statements`. https://clang.llvm.org/extra/clang-tidy/checks/readability-braces-around-statements.html
* Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocksRémi Verschelde2020-05-141-24/+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.
* Port member initialization from constructor to declaration (C++11)Rémi Verschelde2020-05-141-9/+1
| | | | | | | | | | Using `clang-tidy`'s `modernize-use-default-member-init` check and manual review of the changes, and some extra manual changes that `clang-tidy` failed to do. Also went manually through all of `core` to find occurrences that `clang-tidy` couldn't handle, especially all initializations done in a constructor without using initializer lists.
* Merge pull request #38203 from woollysammoth/multiple-ik-bugRémi Verschelde2020-04-291-1/+9
|\ | | | | Fixes SkeletonIK resetting other IK poses
| * Resets global pose of IK chain bones being solved, rather than the whole ↵Sam2020-04-251-1/+9
| | | | | | | | skeleton. Resolves #38026
* | [Core] Rename linear_interpolate to lerpAaron Franke2020-04-291-1/+1
|/
* Replace NULL with nullptrlupoDharkael2020-04-021-13/+13
|
* Rename more 2D and 3D nodes to follow conventionRémi Verschelde2020-03-271-0/+578
Rename editor plugins to match the new node names.