Subpixel check as a "global" preference
Subpixel check as a "global" preference
Hello all,
I dived into tvpaint and with great pleasure only after a week of having it
i have "moved" most of my workflow here...
When trying to do Cutout style animation with ready made limbs for a character in the custom brush bin i would like to have the option for Subpixel accuracy always on...is it possible?
right now, i have to recheck it whenever i need to switch from one brush from the bin to another..
j.
I dived into tvpaint and with great pleasure only after a week of having it
i have "moved" most of my workflow here...
When trying to do Cutout style animation with ready made limbs for a character in the custom brush bin i would like to have the option for Subpixel accuracy always on...is it possible?
right now, i have to recheck it whenever i need to switch from one brush from the bin to another..
j.
Ooh! I had to jump in to this one.
Sub pixel is excellent but I would love to have it on as default even when not using custom brushes.
Example: When roughing out I often cut out bits of my drawing as brushes and re-size them. At the moment I have to check the sub pixel box each time. It would be helpful if this was on as default
Sub pixel is excellent but I would love to have it on as default even when not using custom brushes.
Example: When roughing out I often cut out bits of my drawing as brushes and re-size them. At the moment I have to check the sub pixel box each time. It would be helpful if this was on as default
- malcooning
- Posts: 2114
- Joined: 29 Mar 2006, 12:43
- Location: Tel Aviv
- Contact:
Keep subpixel=On
Tick that box ("subpixel" in the custombrush panel) first,malcooning wrote:I add my support to this. always tick that box...
then cut the brush with "Keep" ticked (cut brush panel).
- Attachments
-
- Keep.png (4.81 KiB) Viewed 36236 times
- malcooning
- Posts: 2114
- Joined: 29 Mar 2006, 12:43
- Location: Tel Aviv
- Contact:
Hmm how?
Is it possible to make tvpaint wait for a cut brush imput
like "PARAM line" and then execute the rest of the script?
else All I can think off is making a selection and then run this action:
0:Key: Shape Select:Copy to Custombrush
1:Command : tv_BrushRestore RESET 1 subpixel 1
2:Key : Shape Select:Clear
but that is still 2 actions.
1:Select
2:run action.
same as
1: Cutbrush
2:press Subpixel
-mads
Is it possible to make tvpaint wait for a cut brush imput
like "PARAM line" and then execute the rest of the script?
else All I can think off is making a selection and then run this action:
0:Key: Shape Select:Copy to Custombrush
1:Command : tv_BrushRestore RESET 1 subpixel 1
2:Key : Shape Select:Clear
but that is still 2 actions.
1:Select
2:run action.
same as
1: Cutbrush
2:press Subpixel
-mads
- ramblindawg
- Posts: 34
- Joined: 15 Jun 2007, 19:37
- Location: Los Angeles, USA
- Contact:
Great timing...I have a draft of this same question in my outgoing mail folder.
I run into this same problem many times a day; I cut and resize constantly, and when I reset back to 100% size I often forget to re-check "subpixel." If someone can provide a script that would be extremely helpful, as I am not yet up to speed on scripting.
Thanks for bringing up the topic!
I run into this same problem many times a day; I cut and resize constantly, and when I reset back to 100% size I often forget to re-check "subpixel." If someone can provide a script that would be extremely helpful, as I am not yet up to speed on scripting.
Thanks for bringing up the topic!
You can try this :
Assign this script to a button and click on it to copy a brush.
If you want a CUT, create a second script without the tv_undo line.
The problem is that the frehand tool is the only available with tv_SelectShapeTool as far as a know.
Code: Select all
Param rectangle
parse result command x1 y1 x2 y2 button
tv_BrushCut x1 y1 x2 y2 1
tv_Undo
tv_BrushRestore subpixel 1
tv_SelectShapeTool
If you want a CUT, create a second script without the tv_undo line.
The problem is that the frehand tool is the only available with tv_SelectShapeTool as far as a know.
Manuel
- ramblindawg
- Posts: 34
- Joined: 15 Jun 2007, 19:37
- Location: Los Angeles, USA
- Contact:
Thanks, Manuel and Mads...I wasn't able to make the script work, but that's probably because I don't know what I'm doing when it comes to scripts. BUT>>>
You both helped solve my issue, because I just took one line out of Mads' commands (tv_BrushRestore RESET 1 subpixel 1 ) and typed it in as a command onto the RESET button on ZigOtto's B.E.T. (Brush Edit Tools) Toolbar. (see post: http://www.tvpaint.com/forum/viewtopic.php?t=622) Now I can reset and select subpixel at the same time with one button on my Brush Edit Toolbar.
Super!
PS...I agree that a global subpixel option would be nice for the future. I never seem to need it to be "off."
You both helped solve my issue, because I just took one line out of Mads' commands (tv_BrushRestore RESET 1 subpixel 1 ) and typed it in as a command onto the RESET button on ZigOtto's B.E.T. (Brush Edit Tools) Toolbar. (see post: http://www.tvpaint.com/forum/viewtopic.php?t=622) Now I can reset and select subpixel at the same time with one button on my Brush Edit Toolbar.
Super!
PS...I agree that a global subpixel option would be nice for the future. I never seem to need it to be "off."