summaryrefslogtreecommitdiffstats
path: root/editor/animation_track_editor.h
Commit message (Collapse)AuthorAgeFilesLines
...
* 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 inspector plugin for key time edit & Change find key argumentSilc Renew2022-12-221-2/+100
|
* Remove UPDATE_TRIGGER & Match behaviors between AnimationTree/PlayerSilc Renew2022-12-021-1/+0
| | | | #69357
* Fix wrong AnimationTrackKeyEdit update timingSilc Renew2022-11-251-1/+0
|
* Cleanup remaining EditorUndoRedoManager usageskobewi2022-11-241-7/+0
|
* Fix connection of animation changed signal in AnimationTrackEditorSilc Renew2022-11-201-1/+0
|
* Fix update timing when AnimationEditor changes FPSSilc Renew2022-11-171-0/+2
|
* Port remaining connections to callable_mpTomasz Chabora2022-09-181-5/+5
|
* Fixed AnimationTrackEditor redraw/deselect timing and find key compearationSilc Renew2022-08-291-2/+4
|
* Add optimization for Animation::ValueTrackSilc Renew2022-08-271-2/+2
|
* Add linear/cubic angle interpolation to Animation interpolation typeSilc Renew2022-08-271-1/+3
|
* Make Cubic to CubicInTime and reduce items in the track intrp typeSilc Renew2022-08-261-2/+1
|
* Merge pull request #64647 from TokageItLab/auto-tangentRémi Verschelde2022-08-231-1/+3
|\
| * Add bezier preset and refactor bezier editorSilc Renew2022-08-231-1/+3
| | | | | | | | Co-authored-by: Razoric480 <razoric480@gmail.com>
* | Merge pull request #64678 from TokageItLab/implement-ease-bakerRémi Verschelde2022-08-231-0/+16
|\ \ | | | | | | Fix Quaternion Tween and add Easing baker to AnimationTrackEditor
| * | Fix Quaternion Tween and implement ease bakerSilc Renew2022-08-221-0/+16
| |/
* | Merge pull request #59564 from KoBeWi/FINALLY,_ULTIMATE_UNDO_REDORémi Verschelde2022-08-221-6/+6
|\ \
| * | Add per-scene UndoRedokobewi2022-08-221-6/+6
| | |
* | | Merge pull request #64132 from TokageItLab/fix-optimizerRémi Verschelde2022-08-221-2/+2
|\ \ \ | |/ / |/| |
| * | improve animation track optimizer algorithmSilc Renew2022-08-091-2/+2
| | |
* | | Make `cubic_interpolate()` consider key time in animationSilc Renew2022-08-191-2/+3
| |/ |/|
* | Merge pull request #63245 from V-Sekai/animation_editor_read_onlyRémi Verschelde2022-08-101-3/+7
|\ \ | |/ |/|
| * Add read-only mode to AnimationEditor for foreign resources.SaracenOne2022-07-211-3/+7
| |
* | Remove excessive `editor/property_editor.h` includesYuri Sizov2022-08-011-0/+4
| |
* | Extract EditorResourceConversionPlugin into its own source files and clean ↵Yuri Sizov2022-07-311-1/+0
| | | | | | | | up editor includes
* | Merge pull request #48995 from KoBeWi/advanced_animationRémi Verschelde2022-07-281-1/+2
|\ \ | |/ |/|
| * Advance animation after confirmingkobewi2022-06-291-1/+2
| |
* | Create reset tracks with the right update modePedro J. Estébanez2022-07-171-2/+2
|/
* Merge pull request #60774 from TokageItLab/root-seek-modeRémi Verschelde2022-05-181-4/+4
|\ | | | | 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-4/+4
| |
* | 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!
* | Merge pull request #53356 from ↵Rémi Verschelde2022-05-091-1/+1
|\ \ | |/ |/| | | kleonc/animation-track-editor-root-removed-connection-fix
| * AnimationTrackEditor Fix signal connection on root exiting the treekleonc2021-10-031-1/+1
| |
* | Style: Partially apply clang-tidy's `cppcoreguidelines-pro-type-member-init`Rémi Verschelde2022-05-021-16/+17
| | | | | | | | | | | | | | | | | | | | | | 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.
* | Remove RESET tracks after removing trackskobewi2022-04-231-1/+1
| |
* | Highlight hovered keyframes in the animation track editorHugo Locurcio2022-04-081-0/+1
| | | | | | | | | | | | | | Both unselected and selected keyframes feature hover feedback. This currently only affects standard keyframes (i.e. not booleans, colors or audio tracks which use custom icons).
* | Merge pull request #59396 from Calinou/animation-track-editor-improve-drawingRémi Verschelde2022-04-081-0/+1
|\ \ | | | | | | Improve the animation track editor drawing
| * | Improve the animation track editor drawingHugo Locurcio2022-03-211-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | - Draw a background on alternate lines to ease readability of animations with many tracks. - Draw a background on the currently hovered line. - Use the editor focus stylebox instead of a custom rectangle for the focused track.
* | | Zero initialize all pointer class and struct membersRémi Verschelde2022-04-041-61/+61
|/ / | | | | | | | | This prevents the pitfall of UB when checking if they have been assigned something valid by comparing to nullptr.
* | Initialize bools in the headers in editorAaron Franke2022-03-121-13/+13
| |
* | Use get_cursor_shape for identifying the cursor shape in AnimationTimelineEditMarkus Sauermann2022-03-111-0/+2
| | | | | | | | | | get_cursor_shape() is used in cases where a Control displays different cursors in different areas. There is no need to set the default cursor shape on every mouse move event.
* | Fix some Animation panel icons not updating after theme changeHaoyu Qiu2022-03-101-0/+2
| |
* | Improve compilation speed (forward declarations/includes cleanup)Hendrik Brucker2022-02-121-1/+0
| |
* | Fix selecting keys in Track EditFrancois Belair2022-02-101-1/+1
| |
* | Implement drawing and editing all anim beziersFrancois Belair2022-02-091-2/+3
| | | | | | | | | | | | | | | | | | | | | | * 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-3/+3
| |
* | Add ViewPanner to 2D editorkobewi2022-01-211-2/+2
| |
* | Add ViewPanner to more editorskobewi2022-01-141-4/+11
| |
* | Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | | | | | Happy new year to the wonderful Godot community!
* | Allow to add RESET values from existing keyskobewi2021-12-061-0/+2
| |