does exist a "Stamp in Place" equivalent in the george commands list ?
or what could be a script to emulate a custombrush "Stamp in Place" operation ?
thanx for any enlightment.
george command for "stamp in place"
- Paul Fierlinger
- Posts: 8100
- Joined: 03 May 2008, 12:05
- Location: Pennsylvania USA
- Contact:
Re: george command for "stamp in place"
I use Tools:Draw Dot and to that I have added Layer:Next Image to stamp a brush in place and advance to the next frame.
Paul
http://www.slocumfilm.com
Desktop PC Win10-Pro -64 bit OS; 32.0 GB RAM
Processor: i7-2600 CPU@3.40GHz
AMD FirePro V7900; Intuos4 Wacom tablet
http://www.slocumfilm.com
Desktop PC Win10-Pro -64 bit OS; 32.0 GB RAM
Processor: i7-2600 CPU@3.40GHz
AMD FirePro V7900; Intuos4 Wacom tablet
Re: george command for "stamp in place"
the keystroke I was trying to emulate in a george script is "Tools: Re-Apply Custombrush"
rather than "Tools: Draw Dot", anyway, thanks for your answer, Paul.
rather than "Tools: Draw Dot", anyway, thanks for your answer, Paul.
Re: george command for "stamp in place"
Hmmm, we have to let the dev team answer you Zig.
Also, feel free to call the TVPaint office if really needed.
Also, feel free to call the TVPaint office if really needed.
Fabrice Debarge
Re: george command for "stamp in place"
Thanks Fabrice, no urgency for this one,
Re: george command for "stamp in place"
Code for stamp in place
If No scale or rotation smooth none else smooth best(my own homemade smart mode)
Code: Select all
param none
tv_getActiveTool
activeTool = result
Parse activeTool tool mode modeVAL width widthVAL height heightVAL step stepVAL opacity opacityVAL size sizeVAL shift shiftVAL position positionVAL jitter jitterVAL anglle anglleVAL stamp stampVAL handle handleX handleY origine origineX origineY rotate rotateVAL flipX flipXVAL flipy flipyVal borderColor br bg bb dry dryVAL opaque opaqueVAL subpixelO subpixelOVAL dryU dryUVAL screenWrap screenWrapVAL subpixel subpixelVAL rest
IF CMP(tool,"tv_restorebrush") == 1
dotX = origineX+handleX
dotY = origineY+handleY
IF anglleVAL==0 && sizeVAL==100
tv_restorebrush "subpixel 0"
tv_dot dotX dotY
tv_restorebrush subpixel subpixelVAL
ELSE
tv_dot dotX dotY
END
END
Re: george command for "stamp in place"
thanks Mads !
I did'nt know "tv_getActiveTool" command was returning so much informations ...
I'll give a try, as soon as my erratic computer will be fixed .
maybe "tv_getActiveTool" could be somehow documented in the wiki references ?
I did'nt know "tv_getActiveTool" command was returning so much informations ...
I'll give a try, as soon as my erratic computer will be fixed .
maybe "tv_getActiveTool" could be somehow documented in the wiki references ?