I learnt how to script to make this animation scrubber, it auto assigns itself to alt + left mouse button in the 3d view, so press and hold alt + lmb and then moving the mouse the time in the scene, release lmb to exit scrubbing mode. It also loops from the end/start to start/end. I hope you find it useful, and that there are no problems with it.
Search in input for āScrub timelineā and expand the dropdown to find these settings.
Added sensitivity scale
Added ability to adjust sensitivity based on scene length
Hey Cyaoeu, sounds interesting, if its really something you would like to use I will look into it otherwise I have a whole suite of tools I put into the old version of that script I want to clean up first.
For my workflow under āFramesā I have setup screen.keyframe_jump to be shift alt wheel down (and up) to get to next keyframe. And also mapped under āPoseā anim.keyframe_delete to X to delete keyframes. If you havenāt tried that already it might help.
Edit:
Hadriscus, Glad you like it, I hope it works well for you!
it would be better if you can create some kind of time line on viewport when we press the shortcut keys ,so it would make things more easy like ., just an idea
Hey Draguu, I think that level of scripting is beyond my skill level, nice idea though.
Cyaoeu, ah ok. You probably have already worked it out but you should be able to change the parts that say ā/ 10ā to change the mouse movement sensitivity, it might help make next keyframe more usable.
Great man!, so this means we could actually do the same for scaling the size of proportional ediing too, itās a pain to use it with a tabletā¦ and, also it seems that i canāt scrub the whole timeline in the screen, should it adjust itās sensitivity based on how long the scene is, mine is 270 frames and i cant scrub through all of it with the addon.
also it should just work in every window, at least related to animation, 3D view, Graph editor, Dope Sheet, NLA, sequencer, I know that you can just scrub in those, but changing behaviour in 2 windows makes you have to think what youāre going to press whenever you move your mouse to a new window instead of just doing.
Thanks for the report Manolo76, itās funny as that line command is completely redundant I just forgot to remove it
Looch, good idea, I can probably manage that, I will look into into it. Maybe I can add some variables inside the hotkey assignment that lets you change the values for fine tuning the number.
I wonāt have a chance to work on it for a couple of weeks now. I made sure to put the licence as GPL so if you think you can do something better, add to it, or even redo from scratch and take the credit then feel free.
install, then in the graph editor press 1 2 3 and you can toggle visibility of the loc rot scale channels. If you press shift it is an additive selection otherwise it hides everything else. Warning it will assign keys in graph editor to 1 2 3 and shift 1 2 3
Great work!, and thanks for all of these fantastic tools!,
Wouldnāt you create just a āanimation tools addonā and have all of them in the one addon?
I got a question, I couldnāt find the settings for Scrub timeline.
and for the graph editor hide, which is a great idea, i really couldnt make it work, it installs and everything with no errors, but when i hit 1, 2 or 3 nothing happens, and neither does with shift 1 shift 2 and shift 3ā¦
Great work!, and thanks for all of these fantastic tools!,
Wouldnāt you create just a āanimation tools addonā and have all of them in the one addon?
I got a question, I couldnāt find the settings for Scrub timeline.
and for the graph editor hide, which is a great idea, i really couldnt make it work, it installs and everything with no errors, but when i hit 1, 2 or 3 nothing happens, and neither does with shift 1 shift 2 and shift 3ā¦
Hi Looch, yeah thatās the plan. Itās all a learning experience for me so I have to do little bits at a time. If you are interested in looking into there is a lot functionality here https://dl.dropboxusercontent.com/u/1693140/myscipts/r/animscrubber.py that I need to clean up and make usable for other people. It works great for me but I think my style of animating is quite unique so can see other people not liking it.
Not sure about either of your problems, perhaps you need to uninstall then reinstall the addon, or click the tick away to turn off and back on again in the addons pannel. You have to have the mouse in the graph editor for it to work.
ooh the configuration is in input!, okay, because i thought it would be under the addon, maybe those specific setting should also be accesible from the addon panel itself, like in amaranth, node wrangler, or retopoflow
but anyways, iāll figure it out now that i can access the settingsā¦ thank you!
we should share notes about our animation workflow! and check also my Advanced Boomsmash addon, might serve you well https://lollypopman.com/2016/03/30/add-on-advanced-boomsmash/
or this bit of logic to remove animations from objects so you can get them out of the action list.
import bpy
for object in bpy.data.objects:
if object.type != āARMATUREā:
if object.animation_data != None:
object.animation_data.action = None