AresDeveaux
  • Joined on 2023-03-03
AresDeveaux pushed to ease_ease_slider at AresDeveaux/blender 2023-04-19 09:31:43 +02:00
c02d2e0c47 small ordering fix for more clarity
AresDeveaux pushed to ease_ease_slider at AresDeveaux/blender 2023-04-19 09:30:12 +02:00
106b77c86e removed magic numbers
AresDeveaux pushed to blend_to_frame_slider at AresDeveaux/blender 2023-04-18 08:17:07 +02:00
59e322fdce small adjustment
AresDeveaux pushed to ease_ease_slider at AresDeveaux/blender 2023-04-18 08:04:27 +02:00
92a5b26660 converted the slider to bidirectional and disabled the overshoot option
AresDeveaux commented on pull request blender/blender#106527 2023-04-18 07:54:02 +02:00
Animation: push pull slider

I have been converting all my sliders to bidirectional, but this one actually works as it should in only one direction. It should not overshoot beyond 0, only in the positive direction.

AresDeveaux pushed to scale_right_slider at AresDeveaux/blender 2023-04-18 07:38:51 +02:00
333b933936 Converted the slider to bidirectional
AresDeveaux pushed to scale_left_slider at AresDeveaux/blender 2023-04-18 07:37:51 +02:00
2a5736eb63 Converted the slider to bidirectional
AresDeveaux pushed to scale_average_slider at AresDeveaux/blender 2023-04-18 07:36:55 +02:00
f2b0fe535f converted the slider to bidirectional
AresDeveaux commented on pull request blender/blender#106520 2023-04-18 07:22:43 +02:00
Animation: time offset slider

Good news!... since the bidirectional slider worked very well addressing Sybren's note, I decided to use it on every slider since they all are bidirectional (maybe with the exeption of `blend to…

AresDeveaux pushed to time_offset_slider at AresDeveaux/blender 2023-04-18 07:17:13 +02:00
f4750d0e48 converted the slider to bidirectional
AresDeveaux pushed to blend_to_ease_slider at AresDeveaux/blender 2023-04-18 07:06:26 +02:00
90fdaf9ad7 converted the slider to bidirectional and disabled the offset
AresDeveaux pushed to shear_right_slider at AresDeveaux/blender 2023-04-18 06:54:57 +02:00
105f20fc56 converted the slider to bidirectional
AresDeveaux commented on pull request blender/blender#106517 2023-04-18 06:31:45 +02:00
Animation: blend to infinity slider

I changed the slider to be bidirectional and deleted some extra lines that were not needed. I still have not deleted the if statements that test for the neighboring keys needed for the tool,…

AresDeveaux pushed to blend_to_infinity_slider at AresDeveaux/blender 2023-04-18 06:26:49 +02:00
f231c18d95 deleted lines that were not deeded and added bidirectional slider
AresDeveaux commented on pull request blender/blender#106518 2023-04-18 06:08:49 +02:00
Animation: blend offset slider

So, I was wrong (no surprise there). Bidirectional slider work as expected I did something wrong before for it not to work. I'm guessing I left used fabs(factor) before the if statement.…

AresDeveaux pushed to blend_offset_slider at AresDeveaux/blender 2023-04-18 06:04:47 +02:00
c038ce005f added bidirectional sliders
AresDeveaux pushed to shear_left_slider at AresDeveaux/blender 2023-04-18 05:31:42 +02:00
7f9b1d33e7 use bidirectional slider
AresDeveaux commented on pull request blender/blender#106520 2023-04-18 05:03:48 +02:00
Animation: time offset slider

I added the lines to avoid memory leaks.

Also, as stated previously I tried overshoot in time offset slider and stops at 0 as you said, but also all the other sliders (ease, `blend to…

AresDeveaux pushed to time_offset_slider at AresDeveaux/blender 2023-04-18 04:59:00 +02:00
8ec0fa3976 added lines to avoid memory leaks
264301a1b2 fix minor error in comment
Compare 2 commits »
AresDeveaux commented on pull request blender/blender#106520 2023-04-18 04:13:44 +02:00
Animation: time offset slider

Interesting! I didn't see those before. I can understand this tool using the overshoot, but for others like blend to infinity the overshoot doesn't make sense. I need to check all the sliders to…