Page 1 of 1

Suggestion: More Accurate Wet Profile and Other Profiles when Tweaking

Posted: 19 Jan 2019, 19:25
by TheQuestionMark
I was wondering if you can add measurement coordinates on the wet profile or the other profiles to make it less subjective when tweaking it. Like you can see the number to 1 to 1000, 1 to 10,000, or 1 to 100 or any number, or if you want, make it have decimals for the coordinates.

Also can add movement incremental button when selecting a point on the wet profile I found I have to guess and can never get the same look on my strokes. Left, Right, Up, Down and Diagonal. And is it possible to have a "don't move button by mouse" and selection toggle, I have habit of moving the point just by selecting. Also add the option to input the amount of increment you want to move.

Here's a Diagram.

Image

Re: Suggestion: More Accurate Wet Profile and Other Profiles when Tweaking

Posted: 28 Jan 2019, 16:33
by schwarzgrau
Thats a really nice idea. I also felt the need to adjust the curves more precisely.

Re: Suggestion: More Accurate Wet Profile and Other Profiles when Tweaking

Posted: 28 Jan 2019, 17:59
by Svengali
One could make a simple Button/Script that would read the current brush's WetProfile, let the user edit-tweak or add more values, then install the new values to the WetProfile for the brush.

Here is a simple embedded script that will read and display a brush's current WetProfile settings:

Code: Select all

tv_BrushRestore WetProfile
parse result d CurrentWetProfile
tv_warn "the current wetprofile = " CurrentWetProfile
In the resulting displayed numbers, the first number tells how many points, the second number tell which point is current selected, the third number 0/1/2(spline, linear, Poly) is type of interpolation and the rest of the numbers are X,Y pairs representing where each point is located.


For more information check out the Documentation for GEORGE HERE: Look in Chapter 21 "The advanced functions of TVPaint animation, How to use the "George" scripting language, Instructions and Commands " search for WetProfile which will be under the tv_BrushRestore command and the tv_RestoreBrush command details...

Sven

Re: Suggestion: More Accurate Wet Profile and Other Profiles when Tweaking

Posted: 31 Jan 2019, 04:22
by TheQuestionMark
Svengali wrote: 28 Jan 2019, 17:59 One could make a simple Button/Script that would read the current brush's WetProfile, let the user edit-tweak or add more values, then install the new values to the WetProfile for the brush.

Here is a simple embedded script that will read and display a brush's current WetProfile settings:

Code: Select all

tv_BrushRestore WetProfile
parse result d CurrentWetProfile
tv_warn "the current wetprofile = " CurrentWetProfile
In the resulting displayed numbers, the first number tells how many points, the second number tell which point is current selected, the third number 0/1/2(spline, linear, Poly) is type of interpolation and the rest of the numbers are X,Y pairs representing where each point is located.


For more information check out the Documentation for GEORGE HERE: Look in Chapter 21 "The advanced functions of TVPaint animation, How to use the "George" scripting language, Instructions and Commands " search for WetProfile which will be under the tv_BrushRestore command and the tv_RestoreBrush command details...

Sven

Hmmmm I tried the command it doesn't seem friendly if you have tons of points on your wet profile, I have like 30 points. It looks gibberish, and it's difficulty to pin point the point of where you're looking for with that command.

Re: Suggestion: More Accurate Wet Profile and Other Profiles when Tweaking

Posted: 31 Jan 2019, 14:39
by Svengali
30 points? wow. That must take a while. Can you post a screen shot of what that looks like?

Actually, the 3 line script was simply to show that the WetProfile curve points were accessible. The script to let you interactively modify values would take a few more lines... Maybe someone who scripts in GEORGE and regularly uses complicated curves like yours will volunteer to help.

Or maybe the TVP programmers will have a couple of extra hours to add the modifications you suggest to the next release. :)

Sven

Re: Suggestion: More Accurate Wet Profile and Other Profiles when Tweaking

Posted: 03 Feb 2019, 05:08
by TheQuestionMark
Svengali wrote: 31 Jan 2019, 14:39 30 points? wow. That must take a while. Can you post a screen shot of what that looks like?

Actually, the 3 line script was simply to show that the WetProfile curve points were accessible. The script to let you interactively modify values would take a few more lines... Maybe someone who scripts in GEORGE and regularly uses complicated curves like yours will volunteer to help.

Or maybe the TVP programmers will have a couple of extra hours to add the modifications you suggest to the next release. :)

Sven
Here it is.. as you can see when you use that command the point information they are off screen. I can't see the information on the points anymore on my screen as it goes off, and I set my monitor to portrait mode with my 4K monitor.

Image

Re: Suggestion: More Accurate Wet Profile and Other Profiles when Tweaking

Posted: 05 Feb 2019, 16:12
by Svengali
Some version of this points editor interface might do the trick, but 30 points could take a while :D
WetProfile points editor.png
WetProfile points editor.png (54.99 KiB) Viewed 20312 times
Other GEORGE script variations would permit precise editing of curve points (CSize, CJitter, CAngle, CShift, CSmear).

A similar points editor option for the FX Speed Profile would be useful, as well...
Sven