George Commands : Guidelines

From TVPaintWiki
Revision as of 08:17, 27 August 2013 by Madsjuul (Talk | contribs) (Created page with '//======================================================================================= // George commands //===================================================================…')

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

//======================================================================================= // George commands //=======================================================================================

//returns number < 0 if error //returns the index of the new guideline tv_guidelineadd "line" ["x" value] ["y" value] ["angle" value] tv_guidelineadd "circle" ["x" value] ["y" value] ["radius" value] tv_guidelineadd "ellipse" ["x" value] ["y" value] ["radiusa" value] ["radiusb" value] tv_guidelineadd "segment" ["x1" value] ["y1" value] ["x2" value] ["y2" value] tv_guidelineadd "grid" ["x" value] ["y" value] ["w" value] ["h" value] tv_guidelineadd "fieldchart" tv_guidelineadd "animatorfield" tv_guidelineadd "safearea" ["out" value] ["in" value] tv_guidelineadd "image" ["path" value] ["x" value] ["y" value] ["rotation" value] ["scale" value]

//returns number < 0 if error //returns the previous values of the index guideline //for line tv_guidelinemodify index ["x" value] ["y" value] ["angle" value] //for circle tv_guidelinemodify index ["x" value] ["y" value] ["radius" value] //for ellipse tv_guidelinemodify index ["x" value] ["y" value] ["radiusa" value] ["radiusb" value] //for segment tv_guidelinemodify index ["x1" value] ["y1" value] ["x2" value] ["y2" value] //for grid tv_guidelinemodify index ["x" value] ["y" value] ["w" value] ["h" value] //for safearea tv_guidelinemodify index ["out" value] ["in" value] //for image tv_guidelinemodify index ["path" value] ["x" value] ["y" value] ["rotation" value] ["scale" value]

//returns number < 0 if error tv_guidelineremove "all"|"line"|"circle"|"segment"|"grid"|...|index

//returns number < 0 if error //returns the previous state (0|1) if index is used //returns nothing if several guidelines changed tv_guidelinevisible "all"|"line"|"circle"|"segment"|"grid"|...|index 0|1|"on"|"off"|"true"|"false"|"toggle" //returns the state of the guideline tv_guidelinevisible index

//returns number < 0 if error //returns the previous state (0|1) if index is used //returns nothing if several guidelines changed tv_guidelinesnap "all"|"line"|"circle"|"segment"|"grid"|...|index 0|1|"on"|"off"|"true"|"false"|"toggle" //returns the state of the guideline tv_guidelinesnap index

//returns number < 0 if error //returns the previous state (0|1) if index is used //returns nothing if several guidelines changed tv_guidelinecollapse "all"|"line"|"circle"|"segment"|"grid"|...|index 0|1|"on"|"off"|"true"|"false"|"toggle" //returns the state of the guideline tv_guidelinecollapse index

//returns number < 0 if error //returns the previous marge if index is used //returns nothing if several guidelines changed tv_guidelinemarge "all"|"line"|"circle"|"segment"|"grid"|...|index new-marge //returns the marge of the guideline tv_guidelinecollapse index

//returns number < 0 if error //returns the previous color if index is used //returns nothing if several guidelines changed tv_guidelinecolor "all"|"line"|"circle"|"segment"|"grid"|...|index r g b a //returns the color of the guideline tv_guidelinecolor

//returns number < 0 if error //returns the index of the found guideline at the given position in the whole list //returns "none" if no guideline found //in this first case, the returned index = given position tv_guidelineenum position //returns the index of the found guideline at the given position in the list made of the wanted type //returns "none" if no guideline found tv_guidelineenum position "line"|"circle"|"segment"|"grid"|...

e.g.: list of guidelines - 0 line - 1 segment - 2 circle - 3 circle - 4 segment - 5 line

tv_guidelineenum 0 "circle" -> 2 tv_guidelineenum 1 "circle" -> 3 tv_guidelineenum 2 "circle" -> "none" tv_guidelineenum 0 "segment" -> 1 tv_guidelineenum 1 "segment" -> 4


//returns "ERROR" if error //returns the name of the guideline tv_guidelinename position //returns the previous name of the guideline tv_guidelinename position new-name