summaryrefslogtreecommitdiffstats
path: root/scene/2d/skeleton_2d.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
|
* Merge commit godotengine@92e51fca7247c932f95a1662aefc28aca96e8de6Spartan3222024-10-141-22/+22
|\
| * Use local vector for skeletonNazarii2024-10-021-22/+22
| |
* | 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>
* Fix super call in various `get_configuration_warnings` methodsA Thousand Ships2024-09-051-1/+1
|
* Merge pull request #91731 from TokageItLab/b2sRémi Verschelde2024-08-191-3/+1
|\ | | | | | | Fix Bone2D gizmo scaling
| * Fix bone2d scalingSilc Lizard (Tokage) Renew2024-05-091-3/+1
| | | | | | | | Co-authored-by: Thiago Lages de Alencar <thiagola92@gmail.com>
* | Fix Skeleton2D.{_set|_get} always returning truekleonc2024-08-041-22/+14
| |
* | Physics interpolation: Fix 2D skinningRicardo Buring2024-06-201-7/+62
|/ | | | Co-authored-by: lawnjelly <lawnjelly@gmail.com>
* Fix errors and warnings when loading Skeleton2D Modificationsjohnsonbaugh2024-04-231-27/+38
| | | | Fixes #73247
* Revert "Update Node::get_configuration_warnings signature"Rémi Verschelde2024-02-171-2/+2
| | | | This reverts commit d3852deaa450d77edb30df2bb1c77bd7bc45befc.
* Update Node::get_configuration_warnings signatureRedMser2024-02-081-2/+2
|
* Merge pull request #83397 from ↵Rémi Verschelde2024-01-111-19/+13
|\ | | | | | | | | | | thiagola92/readability_skeleton_2d_calculate_length_and_rotation Refactor function `calculate_length_and_rotation()` from Skeleton2D
| * Refactor function `calculate_length_and_rotation()` from Skeleton2Dthiagola922024-01-111-19/+13
| |
* | Update deferred calls to use Callableskobewi2024-01-091-5/+2
|/
* Fill remaining global scope constant descriptionskobewi2023-11-131-1/+1
|
* Fix invalid return from some more `_get/_set`A Thousand Ships2023-10-271-4/+8
| | | | Invalidly returned `true` on the non-matched path
* Allow using floating-point bone sizes and outline widths in the 2D editorHugo Locurcio2023-07-171-2/+2
| | | | | This is useful when animating pixel art sprites in the 2D editor, as a value of `1` is often too large when zoomed in.
* Use NULL instead of COND checks when appropriateNinni Pipping2023-06-101-1/+1
| | | | Restricted to scene
* Remove NOTIFICATION_MOVED_IN_PARENTJuan Linietsky2023-04-061-10/+2
| | | | | | | | | * This notification makes node children management very inefficient. * Replaced by a NOTIFICATION_CHILDREN_CHANGED (and children_changed signal). * Changed Canvas code (and similar) to use the above signal, to perform more efficiently. This PR breaks compatibility (although this notification was very rarely used, even within the engine), but provides an alternate way to do the same. It is required for the changes in #75627 to be entirely effective.
* Remove deprecated methods from Bone2DYuri Sizov2023-02-171-13/+0
| | | | - also add them to the project convertor
* Hide clip_children for non-drawn CanvasItemsNinni Pipping2023-01-301-0/+2
|
* PropertyUsage: Rename "DO_NOT_SHARE_ON_DUPLICATE" to "ALWAYS_DUPLICATE"Aaron Franke2023-01-241-1/+1
|
* 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".
* Add safety-checks before some servers `free()`Adam Scott2022-12-291-0/+2
|
* Remove redundant Variant-types initializationsMarkus Sauermann2022-11-141-1/+1
|
* Unify usage of GLOBAL/EDITOR_GETkobewi2022-10-181-7/+7
|
* SCons: Re-enable treating `#warning` as error with `werror`Rémi Verschelde2022-10-101-4/+2
| | | | | | | | Replace all TODO uses of `#warning` by proper TODO comments, and will open matching bug reports to keep track of them. We don't have a great track record fixing TODOs, but I'd wager we're even worse for fixing these "TODO #warning" so we should prohibit this usage.
* Fix MSVC warnings, rename shadowed variables, fix uninitialized values, ↵bruvzg2022-10-071-3/+3
| | | | change warnings=all to use /W4.
* Change return type of `get_configuration_warnings` to `PackedStringArray`Marc Gilleron2022-09-191-2/+2
|
* Rename `CanvasItem.update()` to `queue_redraw()`Micky2022-08-291-6/+6
| | | | | | | | | | 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`.
* Rename `str2var` to `str_to_var` and similarMicky2022-08-261-2/+2
| | | | | | | | | | | | | | | | | | Affects the Math class, a good chunk of the audio code, and a lot of other miscellaneous classes, too. - `var2str` -> `var_to_str` - `str2var` -> `str_to_var` - `bytes2var` -> `bytes_to_var` - `bytes2var_with_objects` -> `bytes_to_var_with_objects` - `var2bytes` -> `var_to_bytes` - `var2bytes_with_objects` -> `var_to_bytes_with_objects` - `linear2db` -> `linear_to_db` - `db2linear` -> `db_to_linear` - `deg2rad` -> `deg_to_rad` - `rad2deg` -> `rad_to_deg` - `dict2inst` -> `dict_to_inst` - `inst2dict` -> `inst_to_dict`
* Use suffixes for units in nodes and resourcesAaron Franke2022-05-191-1/+1
|
* Add dedicated macros for property name extractionHaoyu Qiu2022-05-191-5/+5
| | | | | | | * 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
* String: Remove TTR and DTR defines in non-tools buildRémi Verschelde2022-03-281-3/+3
| | | | | This ensures we don't use TTR in runtime code, as it's specifically meant to source translations for the editor.
* Use `switch` consistently in `_notification` (`scene` folder)Rémi Verschelde2022-02-151-183/+188
|
* Improve compilation speed (forward declarations/includes cleanup)Hendrik Brucker2022-02-121-0/+1
|
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Rename `remove()` to `remove_at()` when removing by indexLightning_A2021-11-231-1/+1
|
* Use builtin Vector2 functions for calculation of angles.Anilforextra2021-09-071-1/+1
| | | | .
* Use get_global_* functions instead of using transforms.Anilforextra2021-08-141-2/+2
|
* Fix some unnecessary includesAaron Franke2021-08-131-2/+0
|
* Some work on double supportAaron Franke2021-08-091-10/+10
|
* Optimize StringName usagereduz2021-07-181-3/+3
| | | | | | | | | | | * Added a new macro SNAME() that constructs and caches a local stringname. * Subsequent usages use the cached version. * Since these use a global static variable, a second refcounter of static usages need to be kept for cleanup time. * Replaced all theme usages by this new macro. * Replace all signal emission usages by this new macro. * Replace all call_deferred usages by this new macro. This is part of ongoing work to optimize GUI and the editor.
* Fixed mistake in binding of Skeleton2D::execute_modificationsBastiaan Olij2021-06-081-1/+1
|
* New and improved IK system for Skeleton2DTwistedTwigleg2021-06-051-9/+522
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This PR and commit adds a new IK system for 2D with the Skeleton2D node that adds several new IK solvers, a way to control bones in a Skeleton2D node similar to that in Skeleton3D. It also adds additional changes and functionality. This work was sponsored by GSoC 2020 and TwistedTwigleg. Full list of changes: * Adds a SkeletonModifier2D resource * This resource is the base where all IK code is written and executed * Has a function for clamping angles, since it is so commonly used * Modifiers are unique when duplicated so it works with instancing * Adds a SkeletonModifierStack2D resource * This resource manages a series of SkeletonModification2Ds * This is what the Skeleton2D directly interfaces with to make IK possible * Adds SkeletonModifier2D resources for LookAt, CCDIK, FABRIK, Jiggle, and TwoBoneIK * Each modification is in its own file * There is also a SkeletonModifier2D resource that acts as a stack for using multiple stacks together * Adds a PhysicalBone2D node * Works similar to the PhysicalBone3D node, but uses a RigidBody2D node * Changes to Skeleton2D listed below: * Skeleton2D now holds a single SkeletonModificationStack2D for IK * Skeleton2D now has a local_pose_override, which overrides the Bone2D position similar to how the overrides work in Skeleton3D * Changes to Bone2D listed below: * The default_length property has been changed to length. Length is the length of the bone to its child bone node * New bone_angle property, which is the angle the bone has to its first child bone node * Bone2D caches its transform when not modified by IK for IK interpolation purposes * Bone2D draws its own editor gizmo, though this is stated to change in the future * Changes to CanvasItemEditor listed below: * Bone2D gizmo drawing code removed * The 2D IK code is removed. Now Bone2D is the only bone system for 2D * Transform2D now has a looking_at function for rotating to face a position * Two new node notifications: NOTIFICATION_EDITOR_PRE_SAVE and NOTIFICATION_EDITOR_POST_SAVE * These notifications only are called in the editor right before and after saving a scene * Needed for not saving the IK position when executing IK in the editor * Documentation for all the changes listed above.
* Use Array for node configuration warningsNathan Franke2021-04-111-13/+7
| | | | Previously, the warnings were passed as a string and delimitation of which were hard coded at each implementation.
* Use real_t in non-physics 2D nodesAaron Franke2021-03-191-2/+2
|
* Fixes small typos and grammar correctionAnshul7sp12021-03-121-1/+1
|
* Make Servers truly Thread Safereduz2021-02-101-1/+1
| | | | | | | | | -Rendering server now uses a split RID allocate/initialize internally, this allows generating RIDs immediately but initialization to happen later on the proper thread (as rendering APIs generally requiere to call on the right thread). -RenderingServerWrapMT is no more, multithreading is done in RenderingServerDefault. -Some functions like texture or mesh creation, when renderer supports it, can register and return immediately (so no waiting for server API to flush, and saving staging and command buffer memory). -3D physics server changed to be made multithread friendly. -Added PhysicsServer3DWrapMT to use 3D physics server from multiple threads. -Disablet Bullet (too much effort to make multithread friendly, this needs to be fixed eventually).