summaryrefslogtreecommitdiffstats
path: root/editor/animation_bezier_editor.h
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>
* Merge pull request #93860 from ↵Rémi Verschelde2024-07-071-1/+1
|\ | | | | | | | | | | CookieBadger/animation-bezier-undo-on-different-animation-fix Fix inconsistent behavior of Bezier editor undo operations upon selection of different animation
| * fix animation bezier editor undo operations applying to wrong animationemild2024-07-021-1/+1
| |
* | Clamp bezier handle length to half the length of animationKasper Frandsen2024-07-041-1/+0
|/
* fix animation bezier keys not showing in inspector after selectionemild2024-06-211-1/+1
|
* Merge pull request #88498 from CookieBadger/animation-fix-snapping-multipleRémi Verschelde2024-03-241-0/+1
|\ | | | | | | Fix snapping multiple keys in Animation
| * Fix snapping multiple keys in Animationemild2024-03-181-0/+1
| |
* | Merge pull request #88445 from CookieBadger/animation-paste-snap-fixRémi Verschelde2024-03-241-2/+2
|\ \ | | | | | | | | | Fix various bugs in Animation key right click actions
| * | Fix various bugs in Animation key right click actionsemild2024-02-201-2/+2
| |/
* / Add auto focus timeline and bezier scale on animation editorHilderin2024-03-191-0/+4
|/ | | | | | | | Add a button at the bottom of the animation editor that change the zoom based on the animation length and the bezier scale based on the values and handles of the displayed tracks. The icon and the tooltip of the button change depending if the bezier editor is displayed or not. Some refactor was made in animation_track_editor.cpp to remove code duplication with the visibility check of the tracks. This should help with the issue #85826
* implemented cut selected keys in animation playeremild2024-02-151-1/+2
|
* implement consistent select, copy, paste, duplicate in animation playeremild2024-02-061-1/+9
|
* Add vertical scrolling to bézier track editor.Saracen2023-10-221-2/+5
|
* Add gesture to ViewPanner and simplify a bit its APIGilles Roudière2023-01-231-3/+2
|
* 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".
* Cleanup remaining EditorUndoRedoManager usageskobewi2022-11-241-3/+0
|
* Merge pull request #64647 from TokageItLab/auto-tangentRémi Verschelde2022-08-231-10/+28
|\
| * Add bezier preset and refactor bezier editorSilc Renew2022-08-231-10/+28
| | | | | | | | Co-authored-by: Razoric480 <razoric480@gmail.com>
* | Add per-scene UndoRedokobewi2022-08-221-2/+3
|/
* Add read-only mode to AnimationEditor for foreign resources.SaracenOne2022-07-211-1/+2
|
* Add a new HashSet templatereduz2022-05-201-2/+3
| | | | | * Intended to replace RBSet in most cases. * Optimized for iteration speed
* Replace most uses of Map by HashMapreduz2022-05-161-5/+5
| | | | | | | | | | | | * 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!
* Style: Partially apply clang-tidy's `cppcoreguidelines-pro-type-member-init`Rémi Verschelde2022-05-021-6/+6
| | | | | | | | | | | Didn't commit all the changes where it wants to initialize a struct with `{}`. Should be reviewed in a separate PR. Option `IgnoreArrays` enabled for now to be conservative, can be disabled to see if it proposes more useful changes. Also fixed manually a handful of other missing initializations / moved some from constructors.
* Zero initialize all pointer class and struct membersRémi Verschelde2022-04-041-2/+2
| | | | | This prevents the pitfall of UB when checking if they have been assigned something valid by comparing to nullptr.
* Implement drawing and editing all anim beziersFrancois Belair2022-02-091-6/+38
| | | | | | | | | | | * Move bezier edit from track to button in toolbar * Draw, edit all bezier curves simultaneously * Add click on curve to select tracks * Tie track editor's filter view to bezier editor * Implement visibility and locking * Fix editor spacing issues * Fix track buttons spacing * Add keyframe focus and (de)select all key handling
* Minor tweaks and fixes to panningkobewi2022-01-231-1/+1
|
* Add ViewPanner to 2D editorkobewi2022-01-211-1/+1
|
* Add ViewPanner to more editorskobewi2022-01-141-3/+6
|
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Make bezier handle type a property of keyframes, update interfaceNathan Lovato2021-11-161-12/+5
| | | | | | | - Replaced unused code related to old close icon with a button - Add bezier handle options to right-click menu - Remove mirror handle mode, only keep balanced - Update animation reference
* Replace close icon with button in the Bezier editorNathan Lovato2021-08-261-20/+19
|
* Entirely removes BIND_VMETHOD in favor of GDVIRTUALreduz2021-08-231-1/+1
| | | | | | | | * `_gui_input`, `_input`, `_unhandled_input` and `_unhandled_key_input` are now regular C++ virutal functions. * Everything else converted to GDVIRTUAL * BIND_VMETHOD is gone, always use the new syntax from now on. Creating `_gui_input` method and using the binder to register events will no longer work, simply override the virtual function now.
* 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 🎆
* Initialize class/struct variables with default values in platform/ and editor/Rafał Mikrut2020-12-021-3/+3
|
* Add override keywords.Marcel Admiraal2020-07-101-2/+2
|
* 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.
* Texture refactorJuan Linietsky2020-02-111-3/+3
| | | | | | | | -Texture renamed to Texture2D -TextureLayered as base now inherits 2Darray, cubemap and cubemap array -Removed all references to flags in textures (they will go in the shader) -Texture3D gone for now (will come back later done properly) -Create base rasterizer for RenderDevice, RasterizerRD
* 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-1/+1
|
* Update copyright statements to 2019Rémi Verschelde2019-01-011-2/+2
| | | | Happy new year to the wonderful Godot community!
* Add missing copyright headersRémi Verschelde2018-08-291-0/+30
|
* Entirely new (and much improved) animation editor.Juan Linietsky2018-06-071-0/+141