-
Notifications
You must be signed in to change notification settings - Fork 54
Timeline scaling #80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Since you're mentioning you're not a graphic artist, may I ask what is your background? (math, CS, other, student, professional?) Yes, you are totally right, and you have nailed down the issues with downscaling. Most animation programs provide this type of time scaling, where you can select multiple keyframes in the timeline, and you can drag-and-drop to offset in time, and scale them to change the speed. It's like manipulating a bounding box but in the time dimension. Eventually, VPaint will have that too, it's an important feature. Here is how it's done in Maya: https://www.youtube.com/watch?v=uMMXn6E2StM The math of scaling is trivial, but indeed there's the issue that after scaling, the keyframe "times" may not be whole numbers anymore. Typically, animation programs round up to the closest whole number. In case of conflicts (two keyframes rounding to the same whole number), they would either arbitrarily delete one of them, of merge them, averaging the values. In the case of VPaint, this kind of deletion or averaging is harder to do, because keyframes are not just single values, but complex geometric entities connected in space-time in non-trivial ways. Therefore, it is actually going to be quite hard to implement. |
Mostly CS and philosophy student, a bit audio, a bit game design but generally jack of all trades. I like to do things myself. At the moment I'd like to use VPaint for an intro for a youtube playlist. I was thinking of using it also for games, but that seems unlikely atm., in part because of how hard more detailed vector art would be i Vpaint, but also because my favorite game engine does not natively support SVG. I can see me using it for game intro videos. Since at the moment I dabble in making youtube videos I am considering making a little Vpaint tutorial, once I know it well enough. There are very few and they are not extensive. Sadly there is another program called vpaint that comes up a fair bit more on youtube. |
Thx that's awesome! Making tutorials for VPaint would be super
appreciated :) Let me know if you have any question, I'd provide as much
help as I can.
…On 01/20/2017 11:04 AM, hollunder wrote:
Mostly CS and philosophy student, a bit audio, a bit game design but
generally jack of all trades. I like to do things myself. At the
moment I'd like to use VPaint for an intro for a youtube playlist. I
was thinking of using it also for games, but that seems unlikely atm.,
in part because of how hard more detailed vector art would be i
Vpaint, but also because my favorite game engine does not natively
support SVG. I can see me using it for game intro videos.
Since at the moment I dabble in making youtube videos I am considering
making a little Vpaint tutorial, once I know it well enough. There are
very few and they are not extensive. Sadly there is another program
called vpaint that comes up a fair bit more on youtube.
Well, I dabble in a lot of things, we'll see what comes out of it.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#80 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AElkC5Yt2U2y9b1HPK6cYxm0rlY2dq8xks5rUQVbgaJpZM4LpL-E>.
|
I am not a graphics artist, I do not know how this is usually done.
Here is the use case I have in mind:
Assuming you have an animation that you are satisfied with, but it is too short.
What I could do now is to decrease the FPS, with the result of making the animation more jerky.
If I want to keep the FPS, then I would have to extend the timeline and manually move all key frames and re-create the interpolation (which currently may or may not work...).
IMHO there should be a way to automate this process.
I realize that upscaling by whole numbers is easy but pretty much everything else will require approximations and there will be corner cases when downscaling (what about keyframes that would be deleted if you do it naively). So this probably requires some more thought but could be considered when rewriting the timeline.
The text was updated successfully, but these errors were encountered: